I need to loop through columns 5 to LastColumn where LastColumn = Cells(1,Columns.Count).End(xlToLeft). Columns. I need to select each one individually so that I can convert the Text to a number using Text to column.
Here is what I tried along with a few other changes, nothing of course which worked
:
Help Please
Here is what I tried along with a few other changes, nothing of course which worked
:
Code:
For i = 5 To LastColumn
' Columns(I:I)) _
.TextToColumn Destination:=Range(i, & 1), _
' DataType:=xlDelimited, TextQualifer:=xlDoubleQuote, _
' Tab:=True, FieldInfo:=Array(1, 1)
' Next i