I'm trying to size a series of pairs of columns with this code:
Columns(7 + 2 * x - 1).Select
Selection.ColumnWidth = 7
Columns(7 + 2 * x).Select
Selection.ColumnWidth = 14
Where x is a variable allowing me to move across the pairs of columns
But both columns end up with width 14.
Any suggestions?