PeterTaylor
Board Regular
- Joined
- Aug 5, 2010
- Messages
- 158
Dear all,
I am using excel 2007 need a little help with paste syntax. I have the following code
I am trying to paste the selection with transpose option but the macro will not compile, it stops at the last line with message "named argument not found"
regards
Peter
I am using excel 2007 need a little help with paste syntax. I have the following code
Code:
wsData.Range(Cells(1, 15), Cells(1, myTotalColumns)).Select
Selection.Copy
myTotalCollarRows = wsCollars.UsedRange.Rows.Count
myTotalCollarRows = myTotalCollarRows + 1
Windows("1AAA_AL_COLLARS.xlsm").Activate
wsCollars.Cells(myTotalCollarRows, 2).Select
wsCollars.PasteSpecial Transpose:=True
regards
Peter