Macro to stop a Workbook being saved anywhere but its current location and name

tonywatsonhelp

Well-known Member
Joined
Feb 24, 2014
Messages
3,210
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Hi Everyone,

I need help, once again despite my best effort people have suppased my expected level of stupid.
Whats happening is they are opening a document then saving a copy in a different location.

I've gotten past the problem of them doing this in the folder by using a shortcut and saving the file in a location hidden deep. works great but now they are starting to save as on there desktop etc.

So here's all I need, lets no over complicate things

If Possible a macro that disables save as so they can only save, this would fix it.
any method is fine.

Please help if you can as its only Monday and I really don't want to end up on a murder charge when I get to the end of my tether with stupid!!!!! :-)

Thanks
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Re: Macro to stop a Document being saved anywhere but its current location and name

In the Thisworkbook module:

Code:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
    If SaveAsUI Then
        MsgBox "Please stop trying to save this elsewhere. Just use SAVE!!"
        Cancel = True
    End If
End Sub

Not foolproof, as nothing is.
 
Upvote 0
Re: Macro to stop a Document being saved anywhere but its current location and name

Put in ThisWorkbook code module (not a standard module)
Code:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
    If SaveAsUI Then
            MsgBox "Save As is disabled", vbInformation
            Cancel = True
    End If
End Sub

But to alow you some flexibility, make an exception for yourself like this
Code:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
    If SaveAsUI Then
        If LCase(Environ("username")) <> "yongle" Then
            MsgBox "Save As is disabled", vbInformation
            Cancel = True
        End If
    End If
End Sub

Notes
- Environ("username") may hold a different value to Application.UserName (use either)
- user names may be set up in an inconsistent manner - hence LCase
 
Upvote 0
Re: Macro to stop a Document being saved anywhere but its current location and name

You really can't ensure that via a macro as the users can simply use Windows to copy the workbook to another folder without even opening the workbook...
 
Upvote 0
Re: Macro to stop a Document being saved anywhere but its current location and name

You really can't ensure that via a macro as the users can simply use Windows to copy the workbook to another folder without even opening the workbook...

Could you not use a WorkbookOpen event to check ThisWorkbook.FulName to display a msgbox and then delete the file?
 
Upvote 0
Re: Macro to stop a Document being saved anywhere but its current location and name

And if the user doesn't enable the macro?...
 
Upvote 0
Re: Macro to stop a Document being saved anywhere but its current location and name

And if the user doesn't enable the macro?...

Then the file doesn't work. There are methods of forcing users to enable macros.
 
Upvote 0
Re: Macro to stop a Document being saved anywhere but its current location and name

Hi Everyone, Thank you all for your Advice,
Just for the record RoryA and Yondle, both great Ideas and will be perfect for what I'm trying to do.
Macropod, Appreciate you pointing out they can just copy the file but I have gotten around this with using a None Excel Shortcut to open the excel Document so even if they make a copy they are only coping a short cut so this works fine. It was once the document is opened that I have the problem.
The Idea of having a macro check the file path on opening the document is excellent and will be a great extra safety measure. all in all problem is now solved thank you all very much.
Tony
 
Upvote 0
Re: Macro to stop a Document being saved anywhere but its current location and name

HAppreciate you pointing out they can just copy the file but I have gotten around this with using a None Excel Shortcut to open the excel Document so even if they make a copy they are only coping a short cut so this works fine.
Very few users are likely to be fooled by that (shortcuts are pretty obvious), and those that are will only be fooled once...
 
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,244
Members
452,622
Latest member
Laura_PinksBTHFT

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