Message box when closing excel file

trpltwo

New Member
Joined
Jan 18, 2023
Messages
13
Office Version
  1. 365
Platform
  1. Windows
Hi all, thank you in advance for your help.

I want to a pop up message box that when I try to press exit the excel file, if sheet1 cell A1 is >0 then msg box to pop up "did you include this figure in your report because its a positive figure" and option button is "yes" or "no". I need to do anything for yes or no, because it's more of a reminder that if cell A1 is >0, I need to do something. But if it's not greater than 0 just exit without msg box.

thanks!
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Try this in ThisWorkbook EVENT:

VBA Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
  If Sheets("Sheet1").Range("A1").Value > 0 Then
    Dim res As VbMsgBoxResult
    res = MsgBox("did you include this figure in your report because its a positive figure", vbYesNo)
    If res = vbYes Then
      'some
    Else
      'some else
    End If
  End If
End Sub

ThisWorkbook EVENT
- Open the VB Editor (press Alt + F11).
- Over in the Project Explorer, double click on ThisWorkbook.
- In the white panel that then appears, paste the above code.
 
Upvote 0
Solution
Try this in ThisWorkbook EVENT:

VBA Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
  If Sheets("Sheet1").Range("A1").Value > 0 Then
    Dim res As VbMsgBoxResult
    res = MsgBox("did you include this figure in your report because its a positive figure", vbYesNo)
    If res = vbYes Then
      'some
    Else
      'some else
    End If
  End If
End Sub

ThisWorkbook EVENT
- Open the VB Editor (press Alt + F11).
- Over in the Project Explorer, double click on ThisWorkbook.
- In the white panel that then appears, paste the above code.
Thank you very much! works perfectly!
 
Upvote 0

Forum statistics

Threads
1,214,648
Messages
6,120,725
Members
448,987
Latest member
marion_davis

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