I have created a database with a Query by Form where the form passes filter parameters to the query based on user input.
What I want to do is this-
1.The user feeds in search criteria via the form interface and runs the query to get records meeting this search criteria.
2. User selects one (or several) of the records given by the query and stores them in a temporary location (A)
3. User runs a second search with new search criteria to get a new set of results.
4. User stores these new results in the same temporary location (A)
5. User runs the same query multiple times each time with different values fed to the search parameters to obtain filtered records given to A.
6. Push results stored at A into a report.
7. Delete all data at A so that steps 1-6 can be repeated
It would be nice to also have the results in a place where they can be exported to an excel spreadsheet.
Any thoughts on how I can do this?