filter a form with a query

  • Thread starter Thread starter alex
  • Start date Start date
A

alex

Hello everyone,

using Access '03...

I have a form based on a table and I'd like to filter the table
records (in my form) by utilizing a query.

Something like:

Me.Filter = "[Identifier] = [qryLink].[Identifier]"

I can't get the damn thing to work!

I want to show all the records in one table where a record in that
table = a record in a query.

any thoughts?
alex
 
Have you considered using the form filter property instead of a query?
Essentially you're querying the forms datasource directly instead of having
to pull from some other object.
 
Back
Top