Open/manipulate a workbook using BeforeClose event

The_Kurgan

Active Member
Joined
Jan 10, 2006
Messages
270
I'm attempting to use the BeforeClose event to open another workbook, gather data, and then place it into the original workbook. However, once the workbook is open, the code fails to manipulate it. The ribbon and tabs don't seem to be visible and when the code tries to activate the new workbook or select a tab within it, I get a "Subscript out of range" error. Any workarounds or fixes?

The code is very basic:
Code:
Workbooks.Open Filename:="X:\Accounting\Warehouse.xlsx"
Windows("Warehouse.xlsx").Activate   '"Subscript out of range" error
Sheets("WH Forecast").Select


TIA
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
I'm attempting to use the BeforeClose event to open another workbook, gather data, and then place it into the original workbook. However, once the workbook is open, the code fails to manipulate it. The ribbon and tabs don't seem to be visible and when the code tries to activate the new workbook or select a tab within it, I get a "Subscript out of range" error. Any workarounds or fixes?

The code is very basic:
Code:
Workbooks.Open Filename:="X:\Accounting\Warehouse.xlsx"
Windows("Warehouse.xlsx").Activate   '"Subscript out of range" error
Sheets("WH Forecast").Select


TIA

Code:
dim WB as workbook
set WB=Workbooks.Open(Filename:="X:\Accounting\Warehouse.xlsx")
WB.Sheets("WH Forecast").Select
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,636
Messages
6,120,664
Members
448,976
Latest member
sweeberry

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