run append query using parameter values

Monib

New member
Local time
Yesterday, 21:27
Joined
Apr 20, 2016
Messages
6
Hello All,

Just wanted to ask if it is it possible to run an append query which uses parameter values instead of values from a form? If so, how?
Whenever I add the parameter statement to the criteria section the query runs but no values are appended.
 
If you want to append the value of the parameter, the parameter request needs to be in the Field section.

If you want to use the parameter to restrict what is appended, then the parameter request needs to be in the Criteria section.
 
just use your parameter value in your append query:

PARAMETERS [p] TEXT (255);
INSERT INTO table1 ([Field])
SELECT [p];
 
Thank you soooooooooooooooooooo much Isskint! I have spent hours trying to work that out and its so straight forward.
 

Users who are viewing this thread

Back
Top Bottom