Skyhawk32806
New Member
- Joined
- May 8, 2010
- Messages
- 26
Hi,
I'm working on a macro where I have to paste a range of data using transpose. It there an easy way to paste the data without using select? I know how to do it if I don't have Transpose...
My current code:
There is a lot more going inbetween the 2 lines, I just wanted to make it easier to read.
Thanks for any ideas
I'm working on a macro where I have to paste a range of data using transpose. It there an easy way to paste the data without using select? I know how to do it if I don't have Transpose...
My current code:
Code:
Sheet2.Range("D2:CU2:).Copy
Sheet3.Range("F2").PasteSpecial Paste:=xlAll, Operation:=xlNone, SkipBlanks:=False, Transpose:=True
There is a lot more going inbetween the 2 lines, I just wanted to make it easier to read.
Thanks for any ideas