Hello, In Access, I have linked tables from two databases.
What I want is an append query like:
where x and y are defined on a form.
I know how to create a query with parameters x and y but this prompts for the values. I just want to use the values entered on the form.
If you can point me to help it would be appreciated.
Thanks
djj
What I want is an append query like:
Code:
INSERT INTO db[red]1[/red]_Table1 (Field1, Field2, ..)
SELECT Field1, Field2, .. FROM db[red]2[/red]_Table1
WHERE Field1 = x AND Field2 = y
I know how to create a query with parameters x and y but this prompts for the values. I just want to use the values entered on the form.
If you can point me to help it would be appreciated.
Thanks
djj