PeterMoran
MIS
Hi,
I have the following code at the start of a Text To Cols Macro:
Selection.TextToColumns Destination:=Range("B3"), _
How do I change the Range parameter so that it is variable, and points to the cell to the right of the current selection?
Have searched Help without much luck.
Selection.TextToColumns Destination:=Range(Offset(0,1)), _
is one of my unsuccessful efforts, if you see what I mean!
Any assistance greatly appreciated.
I have the following code at the start of a Text To Cols Macro:
Selection.TextToColumns Destination:=Range("B3"), _
How do I change the Range parameter so that it is variable, and points to the cell to the right of the current selection?
Have searched Help without much luck.
Selection.TextToColumns Destination:=Range(Offset(0,1)), _
is one of my unsuccessful efforts, if you see what I mean!
Any assistance greatly appreciated.