E
EagleOne
2003
Copy/Paste is usually simple. That said, I am doing something wrong below.
The following code is excerpted:
Dim myRange as Range, TopCell as Range, TopCell as Range
wks as worksheet
MyColumnsToProcess as long
Note: myRange is on Sheets(1)
myRange = wks.Range(TopCell, BotCell).Resize(, MyColumnsToProcess)
myRange.Offset(0, 5).Resize(, 1).Copy ' attempt to disect a "column" in myRange for the Paste next
Sheets("1200").Range("A" & myRow).Paste
The error is # 438 Object doesn't support this property or method.
Thoughts?
TIA EagleOne
Copy/Paste is usually simple. That said, I am doing something wrong below.
The following code is excerpted:
Dim myRange as Range, TopCell as Range, TopCell as Range
wks as worksheet
MyColumnsToProcess as long
Note: myRange is on Sheets(1)
myRange = wks.Range(TopCell, BotCell).Resize(, MyColumnsToProcess)
myRange.Offset(0, 5).Resize(, 1).Copy ' attempt to disect a "column" in myRange for the Paste next
Sheets("1200").Range("A" & myRow).Paste
The error is # 438 Object doesn't support this property or method.
Thoughts?
TIA EagleOne