Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
We have created a workbook to share with our team. However we want to
prevent users from saving the workbook to their desktops as the form will be updated on a regular basis and want to ensure that they are using the current version. Can this be done? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You may be able to put something in the Workbook_beforesave event, but I'm
not certain. "jcallahan" wrote: We have created a workbook to share with our team. However we want to prevent users from saving the workbook to their desktops as the form will be updated on a regular basis and want to ensure that they are using the current version. Can this be done? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You could try to stop them from saving anywhere with code, but that won't stop
them from using windows explorer to just copy|paste to a new location. One thing that you may want to try is to check to see if the file came from the correct location. Something like this in the Auto_Open procedu Option Explicit Sub auto_Open() If LCase(ThisWorkbook.FullName) = "c:\my documents\excel\book1.xls" Then 'ok, keep going Else MsgBox "Not the correct location" ThisWorkbook.Close savechanges:=False End If End Sub But macros can be disabled--or the Auto_Open procedure could be avoided. In my experience, this is a training/threat issue. Make sure that the users understand what happens if they don't use the most current version of the workbook. (Threats by your manager may be enough.) jcallahan wrote: We have created a workbook to share with our team. However we want to prevent users from saving the workbook to their desktops as the form will be updated on a regular basis and want to ensure that they are using the current version. Can this be done? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Shared workbook - to save or not to save | Excel Discussion (Misc queries) | |||
update pivot in shared shared workbook | Excel Discussion (Misc queries) | |||
How do I save printing option for all in a shared Excel workbook? | Excel Worksheet Functions | |||
Disable save function | Excel Discussion (Misc queries) | |||
Disable save Function | Excel Discussion (Misc queries) |