View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
[email protected] idyllicabyss@googlemail.com is offline
external usenet poster
 
Posts: 32
Default Test if protected

This works too and can be modified to check different criteria;

Sub CheckProtection()

ActiveSheet.Protect

' Check the ability to insert columns on a protected sheet.
' Notify the user of this status.
If ActiveSheet.Protection.AllowInsertingColumns = True Then
MsgBox "The insertion of columns is allowed on this protected
worksheet."
Else
MsgBox "The insertion of columns is not allowed on this
protected worksheet."
End If

End Sub