Copy from One Workbook to another Workbook

rlcurlee67

New Member
Joined
Jun 1, 2022
Messages
11
Office Version
  1. 2013
Platform
  1. Windows
I have a daily report I have to fill out based on daily report sheets sent in.

So,

I have workbook "ABC" (which is my report of daily readings) and I need to copy from workbook "123" cell B45 (which is my daily sheet) and paste in workbook "ABC". I'm not an expert on formulas or macros. Can you please advise on what I should do.
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Try this:

VBA Code:
workbooks.open "C:\yourpath\123.xlsx"
workbooks.open"C:\yourpath\abc.xlsx"

workbooks("123").worksheets("1").range("B45").copy
workbooks("abc").worksheets("1").range("A1").pastespecial paste:=pasteformats
 
Upvote 0
Solution

Forum statistics

Threads
1,214,915
Messages
6,122,212
Members
449,074
Latest member
cancansova

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