Harley78
Active Member
- Joined
- Sep 27, 2007
- Messages
- 372
- Office Version
-
- 365
- Platform
-
- Windows
I was typing a macro for copying every other column Starting with column E till the end, and got to thinking, how I can do this simpler than
Sheets("Configuration1").Select
Range_("E1,G1,I1,K1,M1,O1,Q1,S1,U1,W1,Y1,AA1,AC1,AE1,AG1,AI1,AK1,AM1,AO1,AQ1.......").Select
Selection.Copy
Sheets("Configuration Pricing BTC").Select
Range("A2").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Range("A1").Select
I am sure its possible, but just don't know how.
Sheets("Configuration1").Select
Range_("E1,G1,I1,K1,M1,O1,Q1,S1,U1,W1,Y1,AA1,AC1,AE1,AG1,AI1,AK1,AM1,AO1,AQ1.......").Select
Selection.Copy
Sheets("Configuration Pricing BTC").Select
Range("A2").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Range("A1").Select
I am sure its possible, but just don't know how.