George said:
I want to run a query (append?) and then delete the records that were
appended. But I want to do this with one query instead of a macro.
I need more information.
You could create a temporary table (empty) with the same fields as your
original table (MakeTable query) and append records to it (Append Query) via
a form. You could query that temporary table to your hearts content, or
delete it with a Delete query. (Be careful not to accidentally delete your
original table.)
Something like this is relatively easy to set up, but I would need more
details.