Disable Saving option if the condition was not met.

dellennon

New Member
Joined
May 16, 2011
Messages
20
Dear all,

Could you please help me to write a code to disable the saving option if the condition of the Sheet (called Repeater) and Sheet (called Antenna) were not met? The conditions shall be no cell/s is in "gray" coloured and no cell/s in "strikethrough" text.

Thanks a lot.
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
You could do something like this:

Code:
Private Sub [B]Workbook_BeforeSave[/B](ByVal SaveAsUI As Boolean, Cancel As Boolean)
     If < code for your conditions here > Then
          ' allow save
          Exit Sub
     Else
[B]          ' don't allow save[/B]
[B]          Cancel = True[/B]
     End If
End Sub
 
Upvote 0
You could do something like this:

Code:
Private Sub [B]Workbook_BeforeSave[/B](ByVal SaveAsUI As Boolean, Cancel As Boolean)
     If < code for your conditions here > Then
          ' allow save
          Exit Sub
     Else
[B]          ' don't allow save[/B]
[B]          Cancel = True[/B]
     End If
End Sub

Thanks but sorry for my dumbness, could you help me to put the conditions? i don't know how to do it...
 
Upvote 0

Forum statistics

Threads
1,224,524
Messages
6,179,310
Members
452,906
Latest member
phanmemchatdakenhupviral

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