My Macro gets a last data column lngLastCol. Somewhere in the dim recesses of my mind I thought there was a way to select columns with column numbers, as can be done with rows:
Rows("2:5").Select
but even in R1C1 Reference style:
Columns("2:5").Select
is not valid where:
Columns("B:E").Select
is. I'm trying to get a short way to .Columns("3:" & lngLastCol), but for now I'm stuck at:
With Range(rngSource(1, 3), rngSource(1, lngLastCol)).EntireColumn
Isn't there a simpler way? Am I overlooking a syntax option? (I feel a D'oh! moment coming on.)

[/acronym] [acronym title="What up Dude?"]
[/acronym] UTC -7ąDS


