I'm trying to delete a number of columns of which I know the column
*numbers* and in testing with this code...
Dim rlR As Range
Set rlR = Range("g2:m2")
rlR.Select
rlR.EntireColumn.Select
... then columns A:M get selected.
Can anyone tell my why please?