Tom
All sheets at once. Not without VBA.
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 23 Jun 2005 13:37:56 -0700, "Tom" <tsanders123@hotmail.com> wrote:
>Is there a way to add password protection to all worksheets (same
>password used) within a workbook so that all cells within the workbook
>cannot be changed. The workbook has 6 worksheets that are used.
>
>Thanks
Bookmarks