Worksheet.EnableSelection property (Excel)

Returns or sets what can be selected on the sheet. Read/write XlEnableSelection.

Syntax

expression.EnableSelection

expression A variable that represents a Worksheet object.

Remarks

This property takes effect only when the worksheet is protected: xlNoSelection prevents any selection on the sheet, xlUnlockedCells allows only those cells whose Locked property is False to be selected, and xlNoRestrictions allows any cell to be selected.

Example

This example sets worksheet one so that nothing on it can be selected.

With Worksheets(1) 
 .EnableSelection = xlNoSelection 
 .Protect Contents:=True, UserInterfaceOnly:=True 
End With

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.