Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Workbook_BeforeClose(Cancel As Boolean)
End Sub
Private Sub Workbook_BeforeClose(Cancel As Boolean)
If Cells(1,1) ="Hello World" Then
Me.Save
Else
Cancel = True
MsgBox "Please Don't Close This File"
End If
End Sub