Here is my code...
ActiveSheet.Protect DrawingObjects:=True, Contents:=True,
Scenarios:=True _
, AllowFormattingCells:=True, AllowFormattingColumns:=True, _
AllowFormattingRows:=True, AllowSorting:=True,
AllowFiltering:=True
How would I adjust this so that it is password-protected.
If I use:
ActiveSheet.Protect "password"
,it works,
But the default settings from password protection don't let me use
the spreadsheet as I intended.
I'm just learning VBA and hoping someone more experienced can help
me?