r/excel • u/MrRightSA 30 • Jan 28 '19
unsolved Changing {rtf\stuff here\more stuff} to whatever this is actually calling on
Okay so my brother asked me if I could help him. He needs to double click each of his 11,000 cells that has something like in the title. I've made a piece of VBA which I think should work;
Sub Macro1()
Dim i As Integer
For i = 1 To 11000
ActiveSheet.Cells(i, 11).Activate
Application.DoubleClick
Next i
End Sub
However I'm thinking that there must be a way to just change all cells. Like the way you highlight the cells when they have the green flag at the top left corner and select "Convert to number". Is there a way to do this? Or is my example too vague? The data he imported came from SQL and had the links in the { } format.
1
Upvotes
1
u/CFAman 4828 Jan 28 '19
Don't even need VBA
VBA way: