Hidden Dan
Board Regular
- Joined
- Dec 7, 2016
- Messages
- 63
Hello,
I got several Excel spreadsheets running with VBA scripts. Thank you all for helping me with those.
Now I wonder one thing. In a module several individual scripts are listed. All include password protect / unprotect. If I want to change password I have to change them all in all modules. This is a lot of work. Password it self is same in every script.
Example :
In this case I have to change both, same passwords twice. Is there a way to simplify those scripts so that I only need to change 1 password for all scripts in a module ?
Thank you for your help.
Dan
I got several Excel spreadsheets running with VBA scripts. Thank you all for helping me with those.
Now I wonder one thing. In a module several individual scripts are listed. All include password protect / unprotect. If I want to change password I have to change them all in all modules. This is a lot of work. Password it self is same in every script.
Example :
Code:
Sub Column_LM_open()
ActiveSheet.Unprotect Password:=""
Columns("L:M").EntireColumn.Hidden = False
ActiveSheet.Protect Password:=""
End Sub
Code:
Sub Column_LM_close()
ActiveSheet.Unprotect Password:=""
Columns("L:M").EntireColumn.Hidden = True
ActiveSheet.Protect Password:=""
End Sub
In this case I have to change both, same passwords twice. Is there a way to simplify those scripts so that I only need to change 1 password for all scripts in a module ?
Thank you for your help.
Dan