eAlchemist
Technical User
Is there something I don't know about successive select methods? The following code yields an unexpected (at least I don't expect it) result:
Sheet.Activate
Columns("A:X").Select
Selection.EntireColumn.Hidden = False
Do While ColumnsToHide(arraycount) <> "None"
Columns(ColumnsToHide(arraycount)).Select
If I ?Selection.Address in the immediates window here, I get $B:$X
Does this make sense to anyone? What am I doing wrong?
Thanks,
Chris