Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Hello there,
I also would like to know how to protect multiple sheets within the same workbook at once. I am using 2000. Thanks Judith |
#2
![]() |
|||
|
|||
![]()
Judith
VBA code must be used. Sub ProtectAllSheets() Application.ScreenUpdating = False Dim n As Single For n = 1 To Sheets.Count Sheets(n).Protect Password:="justme" Next n Application.ScreenUpdating = True End Sub Sub UnprotectAllSheets() Application.ScreenUpdating = False Dim n As Single For n = 1 To Sheets.Count Sheets(n).Unprotect Password:="justme" Next n Application.ScreenUpdating = True End Sub Gord Dibben Excel MVP On Thu, 3 Mar 2005 19:29:39 -0800, "JudithJubilee" wrote: Hello there, I also would like to know how to protect multiple sheets within the same workbook at once. I am using 2000. Thanks Judith |
#3
![]() |
|||
|
|||
![]()
Hi,
You can't. You will have to protect each one individually (I believe). For X = 1 to 3 Sheets(x).protect Next Hth, O -- Message posted via http://www.officekb.com |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
workbook protection | New Users to Excel | |||
Seeking help for total worksheet protection | Excel Discussion (Misc queries) | |||
protection on excel forms | Excel Worksheet Functions | |||
How may I remove Office 2003 DRM protection from DOC & XLS files? | Excel Discussion (Misc queries) | |||
Cell Colors and Sheet Protection | Excel Discussion (Misc queries) |