K Keith Aug 8, 2004 #1 Is it possible to apply password protection to an entire spreadsheet without having to go to each individual worksheet ? Thanks, Keith
Is it possible to apply password protection to an entire spreadsheet without having to go to each individual worksheet ? Thanks, Keith
H Harald Staff Aug 8, 2004 #2 Hi Keith No. A common workaround is a macro that loops all sheets and lock/unlock: Sub LockMe() Dim Wks As Worksheet For Each Wks In ActiveWorkbook.Worksheets Wks.Protect Password:="******" Next End Sub HTH. Best wishes Harald
Hi Keith No. A common workaround is a macro that loops all sheets and lock/unlock: Sub LockMe() Dim Wks As Worksheet For Each Wks In ActiveWorkbook.Worksheets Wks.Protect Password:="******" Next End Sub HTH. Best wishes Harald
K Keith Aug 8, 2004 #3 Thanks, Keith Harald Staff said: Hi Keith No. A common workaround is a macro that loops all sheets and lock/unlock: Sub LockMe() Dim Wks As Worksheet For Each Wks In ActiveWorkbook.Worksheets Wks.Protect Password:="******" Next End Sub HTH. Best wishes Harald Click to expand...
Thanks, Keith Harald Staff said: Hi Keith No. A common workaround is a macro that loops all sheets and lock/unlock: Sub LockMe() Dim Wks As Worksheet For Each Wks In ActiveWorkbook.Worksheets Wks.Protect Password:="******" Next End Sub HTH. Best wishes Harald Click to expand...