Worksheet.AutoFilter property (Excel)

Returns an AutoFilter object if filtering is on. Read-only.

Syntax

expression.AutoFilter

expression A variable that represents a Worksheet object.

Remarks

The property returns Nothing if filtering is off.

To create an AutoFilter object for a worksheet, you must turn autofiltering on for a range on the worksheet either manually or by using the AutoFilter method of the Range object.

Example

The following example returns AutoFilter for the current worksheet.

Dim Worksheet1 As Worksheet 
 
Dim returnValue As AutoFilter 
Set returnValue = Worksheet1.AutoFilter

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.