Sets or returns a variant value that is either a string, array of bookmarks, or a FilterGroupEnum value used to filter data.You also use this property to turn an existing Filter off.
The Filter property sets or returns a variant value that can be a Criteria String,
an array of bookmarks, or one of the FilterGroupEnum constants.
The purpose of a filter is to allow you to select records that fit specific criteria
that you have specified.
Records that do not meet your criteria's are said to be filtered out.
The Criteria String is composed of one or more clauses, where each clause has a
FieldName, Operator, and a Value, in that order.
Two or more clauses can be concatenated to each other using the AND or OR operators.
Constant | Value | Description |
---|---|---|
adFilterAffectedRecords | 2 | This filter only displays records changed by the last call to CancelBatch, Delete, Resync, or Update |
adFilterConflictingRecords | 5 | This filter displays only those records that failed the last batch update |
adFilterFetchedRecords | 3 | This filter displays the records in the current cache |
adFilterNone | 0 | Removes the current filter and all underlying records become visible. |
adFilterPendingRecords | 1 | This filter displays changed records that have not been saved |
rsRecordSet.Filter = " FirstName = ' Wilma' OR FirstName = 'Betty' "
rsRecordSet.Filter = " LastName LIKE F* "
rsRecordSet.Filter = " Date >= #12/25/2001# "
rsRecordSet.Filter = " Cost > $100.00 AND Cost < $200.00 "
Dim aMyBookmarks(5)
...
aMyBookmarks(3) = rsRecordSet.Bookmark
...
rsRecordSet.Filter = aMyBookmarks
The Filter property can also be set equal to an array of bookmarks. Only those records that match one of the bookmarks will be returned
objRecordset.Filter = ""
'Or
objRecordset.Filter = adFilterNone
When the filter has been applied, the cursor will be placed at the first record in the Recordset. You can cancel a filter by setting it equal to "" or to adFilterNone.