Searching for a record (parameter query from a form)

  • Thread starter Thread starter Jonnagc
  • Start date Start date
J

Jonnagc

How can i do a parameter query from a form, that will return the
results in a form???

Cheers,
Jg
 
Use a form reference in the query, typically, a combobox on the form. The
query would look something like:

SELECT DISTINCT *
FROM qryOwners
WHERE (((Street)=[Forms]![frmOwners]![cboFindStreet]));
 
Back
Top