Disable saving

jboles

New Member
Joined
Aug 13, 2003
Messages
44
Good Day,

I need to know ho wto disable saving local copies of excel files that are distributed on sharepoint portal sites.

The workbook is protected, and SPS settings are read-only, but the information is sensitive and we want users to interact with the file but NOT save copies of it...
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Good afternoon jboles

A piece of simple code like this will halt ANY attempt to save the file. It needs to be copied into the ThisWorkbook part of a project to work properly. However, it will also bring it's own problems in that a user must say yes to running a file with macros.

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
Cancel = True
MsgBox "You cannot save this file"
End Sub

HTH

DominicB
 
Upvote 0

Forum statistics

Threads
1,203,075
Messages
6,053,391
Members
444,661
Latest member
liamoohay

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