What is the equivalent VBA?
For example I need to select 9 columns to the right of my starting point, 5 columns contain data, the other 4 columns are blank in between each of the 5 columns.
If I use
Range(Selection, Selection.End(xlToRight)).Select
it only seems to move to the right once, no matter how many times I repeat it in the VBA
For example I need to select 9 columns to the right of my starting point, 5 columns contain data, the other 4 columns are blank in between each of the 5 columns.
If I use
Range(Selection, Selection.End(xlToRight)).Select
it only seems to move to the right once, no matter how many times I repeat it in the VBA