Sounds easy and I can create a form where the results are from a query, that is not a problem.
What I want to be able to do is have a form that contains filters for people to use. So they can add a date to a field then click the button to open a form containing only records that are above that date. to select an ID and have only records come back from that ID.
I tried creating a query based on SQl like this:
SELECT person.*
FROM person
WHERE Form!PersonForm.ControlName > person.date;
Am I even on the right track here?
What I want to be able to do is have a form that contains filters for people to use. So they can add a date to a field then click the button to open a form containing only records that are above that date. to select an ID and have only records come back from that ID.
I tried creating a query based on SQl like this:
SELECT person.*
FROM person
WHERE Form!PersonForm.ControlName > person.date;
Am I even on the right track here?