Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is it possible to protect a spreadsheet from being saved under a different
name or in a different folder? I have people that will save a training schedule to their own directory and then not get the updates. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
use the before close workbook event
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) If SaveAsUI = True Then Cancel = True End Sub this immediatly cancels save as as soon as it is selected provide macros are enabled "Otto" wrote: Is it possible to protect a spreadsheet from being saved under a different name or in a different folder? I have people that will save a training schedule to their own directory and then not get the updates. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks, Mike but this is way over my head. Where does this go?
"Mike" wrote: use the before close workbook event Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) If SaveAsUI = True Then Cancel = True End Sub this immediatly cancels save as as soon as it is selected provide macros are enabled "Otto" wrote: Is it possible to protect a spreadsheet from being saved under a different name or in a different folder? I have people that will save a training schedule to their own directory and then not get the updates. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
The time the spreadsheet was saved | Excel Discussion (Misc queries) | |||
how can i recover an old saved spreadsheet | Excel Worksheet Functions | |||
Spreadsheet Sorts When Saved | Excel Discussion (Misc queries) | |||
Password Protect When Saved | Excel Discussion (Misc queries) | |||
Can I unsave a spreadsheet once it has been saved | Excel Discussion (Misc queries) |