Protection.AllowSorting property (Excel)
Returns True if the sorting option is allowed on a protected worksheet. Read-only Boolean.
Syntax
expression.AllowSorting
expression A variable that represents a Protection object.
Remarks
Sorting can only be performed on unlocked or unprotected cells in a protected worksheet.
The AllowSorting property can be set by using the Protect method arguments.
Example
This example allows the user to sort unlocked or unprotected cells on the protected worksheet and notifies the user.
Sub ProtectionOptions()
ActiveSheet.Unprotect
' Unlock cells A1 through B5.
Range("A1:B5").Locked = False
' Allow sorting to be performed on the protected worksheet.
If ActiveSheet.Protection.AllowSorting = False Then
ActiveSheet.Protect AllowSorting:=True
End If
MsgBox "For cells A1 through B5, sorting can be performed on the protected worksheet."
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.