• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

want to disable file save as option

Rinki

Member
hi there, I have a file ( report ) in shared location which is used by multiple sales reps people keep doing changes and I am not able to figure out like who did what in this huge report. I am interested in restricting the option for save as except for myself so that I know whatever changes have happened they are because of me only.
Please suggest some macro or some settings which could help me achieve this.
 
Dear Rinki

I think a macro as below in the Thisworkbook object achieves your desired end.

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)

If SaveAsUI Then
Cancel = True
End If
End Sub
 
Back
Top