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]));
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top