Prevent user from overwriting file

  • Thread starter Thread starter peter.thompson
  • Start date Start date
P

peter.thompson

I want to prevent a user from ever overwriting a certain file:
"C:\Business Cases\Master Template.xls" i.e. I want to preserve the
integrity of the template.

I also want the user to always save files in the "C:\Business Cases"
folder, which is automatically created the first time the workbook is
opened

Would appreciate any help on the best way of going about this - it's
been a very long day!

Cheers

Peter (...slogging it through VBA)
 
Hi Peter,

The simplest is to use passwords to save and/or to modify, whenever the
user plays with
your template ...

HTH
Cheers
Carim
 
Carim,

How do you set a password that will allow the user to use the template
and save as some other name but not the template name .i.e. are there
'conditional' passwords??

Thanks for all you help today!

Cheers

Peter
 
Hi Peter,

Why not save your template as an actual Template, saveas > Save as Type
scroll down to template.

When you distribute to your users ensure it's saved in their template's
folder, so all they have to do is File > New and select your template.

s = Application.TemplatesPath

It's not straightforward, if indeed possible, to ensure user only saves to a
designated folder. When user clicks Saveas the Beforesave event fires (and
returns SaveAsUI = True), but thereafter user can change name & folder.

Look at ChDir

Regards,
Peter T

"peter.thompson"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top