How do I increment the column reference in the code below? Just the column ref, the row values can stay the same.
Range("w3:w54").PasteSpecial
I'm hoping I can do something like this:
For i = 23 to 27
'start at column w (which is number 23)
Range(Columns(i)+"3":Columns(i)+"54").PasteSpecial
Next
But that throws an error.
Any suggestions?