Forum Discussion
Protecting an Excel workbook
mtarler Going through the save as box is what I needed to protect the document, but yet allow others to read it.
Thank you very much!
As Mr. mtarler already informed you, you can do this with the command "Protect workbook". But with Excel you have several possibilities to accomplish something, depending on your needs and knowledge. One of these possibilities is also VBA. Here is additional information about what Mr. mtarler has already described and with VBA macro as an example.
Protect a worksheet
Protect a workbook
Sub protection ()
ActiveSheet.Protect Password: = "Password Name", UserInterfaceOnly: = True, DrawingObjects: = True, Contents: = True, Scenarios: = True
End Sub
Sub unprotection ()
ActiveSheet.Unprotect Password: = "Password Name"
End Sub
I would be happy to know if I could help.
Nikolino
I know I don't know anything (Socrates)