VBA - save before close unless...

bdfagoodfella

Board Regular
Joined
Oct 22, 2004
Messages
64
I am trying to force my workbook to save before close unless it was opened as read only.
Does anyone have the correct code to accomplish this?

Thanks in advance for your suggestions.
 

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.
Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
    If Not Me.ReadOnly Then Me.Save
End Sub

Ok?
 
Upvote 0
I had finally come up with something....

Dim blnReadonly As Boolean
blnReadonly = ThisWorkbook.ReadOnly
If blnReadonly = True Then
Exit Sub
Else
ThisWorkbook.Save
End If

but yours looks much simpler.

TY much for your help
 
Upvote 0

Forum statistics

Threads
1,215,046
Messages
6,122,855
Members
449,096
Latest member
Erald

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