title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Worksheet.AutoFilter property (Excel) |
vbaxl10.chm175144 |
|
|
766f8501-dae7-32a7-9fae-70a87d0a8eba |
05/30/2019 |
medium |
Returns an AutoFilter object if filtering is on. Read-only.
expression.AutoFilter
expression A variable that represents a Worksheet object.
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.
The following example returns AutoFilter for the current worksheet.
Dim Worksheet1 As Worksheet
Dim returnValue As AutoFilter
Set returnValue = Worksheet1.AutoFilter
[!includeSupport and feedback]