Hi,
I'd like to be able to paste two ranges from another workbook (the data source) to a final workbook using with two macro buttons (one in each) one will say copy and the other paste (in the final workbook).
Copying seems to be okay as you can do something like the below or use a Union method. The issue seems to be that this combines it so removes the spacing between the ranges so when it comes to pasting it pastes in only one range.
Is there a way to copy multiple ranges but keep there independent integrity?
Appreciate I can use four macro buttons (one for each range per workbook) but it's not ideal.
Thanks
Range("f8:g9 i8:t9").Copy
Range("f78:g9, q78").Paste - Not possible
I'd like to be able to paste two ranges from another workbook (the data source) to a final workbook using with two macro buttons (one in each) one will say copy and the other paste (in the final workbook).
Copying seems to be okay as you can do something like the below or use a Union method. The issue seems to be that this combines it so removes the spacing between the ranges so when it comes to pasting it pastes in only one range.
Is there a way to copy multiple ranges but keep there independent integrity?
Appreciate I can use four macro buttons (one for each range per workbook) but it's not ideal.
Thanks
Range("f8:g9 i8:t9").Copy
Range("f78:g9, q78").Paste - Not possible