BeforeClose Event

sspatriots

Well-known Member
Joined
Nov 22, 2011
Messages
572
Office Version
  1. 365
Platform
  1. Windows
When I try the code below, I get a "Compile error: Wrong number of arguments or invalid property assignment" error. The ".close" part of the code is what is highlighted when I select "OK" to close the error message. I'm having a tough time seeing what would cause this. I just want the files below (all opened as "Read Only") to close when I exit my workbook. They are opened in the background because I have a lot of XLOOKUP formulas that point to them and I can only see those results when they are opened. Any help on this would be much appreciated. Thanks, SS


VBA Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)

    Dim my_wb1 As Workbook
    Dim my_wb2 As Workbook
    Dim my_wb3 As Workbook
    Dim my_wb4 As Workbook
    
    Dim file_path1 As String
    Dim file_path2 As String
    Dim file_path3 As String
    Dim file_path4 As String
    
    file_path1 = "H:\Jobs\PO Block History.xlsm"
    file_path2 = "G:\Manufacturing\Manufacturing Detail Schedule1.xlsx"
    file_path3 = "H:\Shop Files\MRL Production Schedule\Production Schedule.xlsm"
    file_path4 = "H:\Jobs\00 ENGINEERING DATA\Job List.xlsm"
    
    Set my_wb1 = Workbooks.Close(Filename:=file_path1, SaveChanges:=False)
    Set my_wb2 = Workbooks.Close(Filename:=file_path2, SaveChanges:=False)
    Set my_wb3 = Workbooks.Close(Filename:=file_path3, SaveChanges:=False)
    Set my_wb4 = Workbooks.Close(Filename:=file_path4, SaveChanges:=False)

End Sub
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
It is not necessary to enter the path, only the file name.

Try:
VBA Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
  Workbooks("PO Block History.xlsm").Close SaveChanges:=False
  Workbooks("Manufacturing Detail Schedule1.xlsx").Close SaveChanges:=False
  Workbooks("Production Schedule.xlsm").Close SaveChanges:=False
  Workbooks("Job List.xlsm").Close SaveChanges:=False
End Sub

----- --
Let me know the result and I'll get back to you as soon as I can.
Sincerely
Dante Amor
----- --
 
Upvote 0
Solution
I don't know that it makes sense to try to set a Workbook variable to a workbook that you are closing.
What is the purpose of using Workbook objects? Why not just close them straight up, like Dante showed?
 
Upvote 0
Hi to all.
Also, On Error Resume Next on top may be needed to avoid error popup if the files aren't open.
 
Upvote 0
It is not necessary to enter the path, only the file name.

Try:
VBA Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
  Workbooks("PO Block History.xlsm").Close SaveChanges:=False
  Workbooks("Manufacturing Detail Schedule1.xlsx").Close SaveChanges:=False
  Workbooks("Production Schedule.xlsm").Close SaveChanges:=False
  Workbooks("Job List.xlsm").Close SaveChanges:=False
End Sub

----- --
Let me know the result and I'll get back to you as soon as I can.
Sincerely
Dante Amor
----- --
Thank you. That did it....
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,958
Members
449,096
Latest member
Anshu121

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