Filter.On property (Excel)
True if the specified filter is on. Read-only Boolean.
expression.On
expression A variable that represents a Filter object.
The following example sets a variable to the value of the Criteria1 property of the filter for the first column in the filtered range on the Crew worksheet.
With Worksheets("Crew")
If .AutoFilterMode Then
With .AutoFilter.Filters(1)
If .On Then c1 = .Criteria1
End With
End If
End With
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.