Vba runtime error 1004

drluke

Active Member
Joined
Apr 17, 2014
Messages
314
Office Version
  1. 365
Platform
  1. Windows
I am copying a worksheet in one workbook to another with this macro:

Sub MoveSheets()
Workbooks.Open Filename:="Combined.xlsm"
Workbooks("Combined.xlsm").Sheets("NewData").Copy After:=Workbooks("Management Fees 2018.xlsm").Sheets("Inputs")
Workbooks("Combined.xlsm").Close savechanges:=False
End Sub

When attempting to run it now I get a runtime error that the workbook Combined cannot be found. The workbook exists, is open and is in the same folder as my target workbook.

Earlier when I tested it everything worked perfectly. Now that I've switched to my Mac version of Excel it doesn't.

Any ideas?
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Does this work?

Code:
Sub MoveSheets()
Workbooks.Open Filename:=ThisWorkbook.Path & "\" & "Combined.xlsm"
Workbooks("Combined.xlsm").Sheets("NewData").Copy After:=Workbooks("Management Fees 2018.xlsm").Sheets("Inputs")
Workbooks("Combined.xlsm").Close savechanges:=False
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,096
Messages
6,123,074
Members
449,093
Latest member
ripvw

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