Hi, How can I determine if a workbook is protected?
S Shasur Feb 4, 2009 #2 You can try the following Sub Check_If_WB_Protected() If (ActiveWorkbook.ProtectWindows = True Or ActiveWorkbook.ProtectStructure = True) Then MsgBox "Workbook is protected" Else MsgBox "Workbook is not protected" End If End Sub Cheers Shasur
You can try the following Sub Check_If_WB_Protected() If (ActiveWorkbook.ProtectWindows = True Or ActiveWorkbook.ProtectStructure = True) Then MsgBox "Workbook is protected" Else MsgBox "Workbook is not protected" End If End Sub Cheers Shasur
F filo666 Feb 4, 2009 #3 Thanks, exactly what I was looking for. could you give it a check to my other post at top? Thanks