figgylynn1023
New Member
- Joined
- Jul 21, 2011
- Messages
- 24
I have built a macro to pull data from multiple locations and copy it into a single excel template. I have reserved the two far left columns of the template for formula calculations, and want the macro code to ensure that the copying and pasting from the other excel docs to the template always starts the paste into the first open cell at the bottom of column C (wherever that happens to be when that document gets copied).
I've tried to following code, but it came up as an error for me:
Range("C1")Select
Selection.End(xlDown).Offset(1,0).Select
ActiveSheet.Paste
Any thoughts?
I've tried to following code, but it came up as an error for me:
Range("C1")Select
Selection.End(xlDown).Offset(1,0).Select
ActiveSheet.Paste
Any thoughts?