vote up 1 vote down star

I can use properties of an Excel Worksheet to tell if the worksheet is protected (Worksheet.Protection, Worksheet.ProtectContents etc).

How can I tell using VBA if the entire workbook has been protected?

flag

75% accept rate

2 Answers

vote up 1 vote down check

Found the answer myself:

I need the Workbook.ProtectStructure and Workbook.ProtectWindows properties.

Thanks anyway

link|flag
vote up 0 vote down

Worksheet.ProtectedContents is what you would need to use, on each Worksheet.

So I would set up a loop like this:

Public Function wbAllSheetsProtected(wbTarget As Workbook) As Boolean 

Dim ws As Worksheet 

wbAllSheetsProtected = True

For Each ws In wbTarget.Worksheets 
    If ws.ProtectContents = False Then 
        wbAllProtected = False
        Exit Function 
    End If 
Next ws 

End Function

The function will return True if every worksheet is protected, and False if there are any worksheets not protected. I hope this is what you were looking for.

link|flag
Thanks, but this isn't what I'm looking for. All worksheets can be protected without the workbook being protected. I need the workbook to be protected so that the user can't unhide hidden sheets. I found the answer myself: Workbook.ProtectStructure and Workbook.ProtectWindows. – Joe Sep 23 '08 at 15:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.