How to end Private Sub Workbook_BeforeClose(Cancel As Boolea

gandalf

New Member
Joined
Jul 15, 2002
Messages
41
I created a macro that checks before closing if some "needed" cells are filled in. If so then the file saves and closes. But if not then a messagebox appears but the file will close (or ask if I want to save changes). How can I end the macro without closing the file?

Thanks.
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Just use an If Then statement, and set Cancel to True if your condition(s) is not met. As a simple example, this will stop the workbook from being closed unless there's a '1' in cell A1 on Sheet 1: -
<pre>
Private Sub Workbook_BeforeClose(Cancel As Boolean)

If Sheet1.Range("A1") <> 1 Then
Cancel = True
MsgBox "Type in 1 in cell A1"
Exit Sub
Else:
ThisWorkbook.Save
End If

End Sub
</pre>
 
Upvote 0
Should have known. Have used it before. Nevertheless: THANKS A MILLION for the accurate and quick response!!
 
Upvote 0

Forum statistics

Threads
1,215,444
Messages
6,124,891
Members
449,194
Latest member
JayEggleton

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