VBA code error when using File Exit

moogthemoog

Board Regular
Joined
Nov 17, 2004
Messages
51
Hi

In Excel 2010, under a Workbook_BeforeClose event, I have code to deselect any multiple selection of sheets.

Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)

 ActiveSheet.Select 'removes multiple selection of sheets

End Sub

This works fine, when closing an individual spreadsheet, whether or not multiple sheets are selected or not.

However, if there is more than one spreadsheet open, and Excel is exited via File/Exit, there is a "Run-time error '1004': Select method of Worksheet class failed" message.

Is there any alternative code to use that will work?

Thanks
Jon
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
That won't have any effect. You need to put that in the BeforeSave SUB. Usually, you would negate any Objects that you were using in the "Before Close" sub.
 
Upvote 0
Have you tried fully quallifying the ActiveSheet ?

Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)


    [COLOR=#ff0000][B]Me.[/B][/COLOR]ActiveSheet.Select 'removes multiple selection of sheets


End Sub
 
Upvote 0
Thanks Jaafar & Jeffrey. Unfortunately, it still causes an error when I put in a BeforeSave event.

But thank you for your suggestions.

Cheers
Jon
 
Upvote 0

Forum statistics

Threads
1,215,001
Messages
6,122,648
Members
449,092
Latest member
peppernaut

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