Skip to content

Latest commit

 

History

History
47 lines (27 loc) · 1.04 KB

Excel.Worksheet.AutoFilter.md

File metadata and controls

47 lines (27 loc) · 1.04 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Worksheet.AutoFilter property (Excel)
vbaxl10.chm175144
vbaxl10.chm175144
Excel.Worksheet.AutoFilter
766f8501-dae7-32a7-9fae-70a87d0a8eba
05/30/2019
medium

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

[!includeSupport and feedback]