Copy and Paste From One Workbook To Another

rbellavance22

New Member
Joined
Aug 8, 2019
Messages
14
Hello,

I have two separate workbooks - nearly identical - that I would like to copy the information from one cell and paste it into another cell within a different workbook.

So, for example:

Copy cell A1 from sheet 'Numbers' in workbook titled 2018 and paste it into workbook titled 2019, sheet 'Numbers' and cell A156
&
Copy cell A14 from sheet 'Letters' in workbook titled 2018 and paste it into workbook titled 2019, sheet 'Letters' and cell A186


Thank you in advance for your help.
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Try this:
I did the first request.
You should see how I did this and you should be able to do the second part.
Both Workbooks must be open
Code:
Sub Copy_Data()
'Modified  8/8/2019  2:17:08 PM  EDT
Workbooks("2018.xlsm").Sheets("Numbers").Range("A1").Copy Workbooks("2019.xlsm").Sheets("Numbers").Range("A156")
End Sub
 
Upvote 0
I had some new developments...

The 2018 workbook has 100+ tabs.

So, I have created a 2019 workbook that has the same number of tabs with the same titles as 2018.

I would like to copy multiple cells from 2018 (A4, B18, C86, C88 & D1) and paste them into a different cell (A4 in 2018 gets pasted into A5 in 2019, etc.) in the corresponding tab in the 2019 workbook.
 
Upvote 0
I suggest you start a new posting.
I had some new developments...

The 2018 workbook has 100+ tabs.

So, I have created a 2019 workbook that has the same number of tabs with the same titles as 2018.

I would like to copy multiple cells from 2018 (A4, B18, C86, C88 & D1) and paste them into a different cell (A4 in 2018 gets pasted into A5 in 2019, etc.) in the corresponding tab in the 2019 workbook.
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,208
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top