Criteria1 Property [Excel 2003 VBA Language Reference]

Returns the first filtered value for the specified column in a filtered range. Read-only Variant.

Example

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

Applies to | Filter Object

See Also | Criteria2 Property | On Property