Filter by Selection

Hunter666

Registered User.
Local time
Today, 14:01
Joined
Mar 28, 2002
Messages
20
I need to be able to filter by selection using VBA but havnt got a clue.
i need to search a field (no problem)
find the data i want to filter and then filter it.
Can anyone please help???
 
I often just reopen the form with a WHERE clause set to the data I want to filter by. As long as the form is already open this process is very quick and painless.

Example: DoCmd.OpenForm "FormName",,,"[City] = '" & Me.CitySearch & "'"

Post back if you need more help.
 

Users who are viewing this thread

Back
Top Bottom