![]() |
closing & saving
Hi is there anyway i can set up a workbook so that it automaically saves when you close it (every time)? also, can i password protect closing a workbook so that you need to put a password in to close the file? thanks rufusf -- rufusf |
closing & saving
The following event procedure will prompt for a password. If the
password is correct, it will save the file and then close. Else it will cancel the closing process. Private Sub Workbook_BeforeClose(Cancel As Boolean) myStr = InputBox("Password required for closing") If myStr = "my set password" Then Me.Save Else Cancel = True End If End Sub To install: Alt+F11 to go to the VBA IDE In the Project Explorer (top-left subwindow) double-click the ThisWorkbook icon. In the code page that appears paste the code above. HTH Kostis Vezerides |
closing & saving
thank you very much - I will give this a try -- rufusf |
All times are GMT +1. The time now is 01:58 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com