knightwriter
New Member
- Joined
- Jul 4, 2016
- Messages
- 17
Hi all,
The macro I run extracts data from multiple workbooks and I have set different ranges from where to copy & paste this data into one data sheet.
Issue I am having is that when I run the macro it replaces the data from previous extract in my data dump sheet. Is there a way I can keep the previous data and put the next data extract on the last row?
I have used: last_row = Cells(Rows.Count, "A").End(xlUp).Row
Range("A1").Copy Destination:=Cells(last_row + 1, "A")
but this does not recognize where the first workbook needs to start pasting values, its just takes the cell from A1.
All help much appreciated
The macro I run extracts data from multiple workbooks and I have set different ranges from where to copy & paste this data into one data sheet.
Issue I am having is that when I run the macro it replaces the data from previous extract in my data dump sheet. Is there a way I can keep the previous data and put the next data extract on the last row?
I have used: last_row = Cells(Rows.Count, "A").End(xlUp).Row
Range("A1").Copy Destination:=Cells(last_row + 1, "A")
but this does not recognize where the first workbook needs to start pasting values, its just takes the cell from A1.
All help much appreciated