Hi,
I'm trying to create an append query based on an open form. I want to take the record that is open in the form and send it off to another database. When I make my query it returns the same record 2853 times (thats the number of records in my db).
what am i doing wrong?
My query fields:
Expr1: [Forms]![Contacts]![contactIDtxt]
Expr2: [Forms]![Contacts]![FirstName]
Expr3: [Forms]![Contacts]![LastName]
now here's my code:
thanks!
I'm trying to create an append query based on an open form. I want to take the record that is open in the form and send it off to another database. When I make my query it returns the same record 2853 times (thats the number of records in my db).
what am i doing wrong?
My query fields:
Expr1: [Forms]![Contacts]![contactIDtxt]
Expr2: [Forms]![Contacts]![FirstName]
Expr3: [Forms]![Contacts]![LastName]
now here's my code:
Code:
SELECT [Forms]![Contacts]![FirstName] AS Expr2, [Forms]![Contacts]![LastName] AS Expr3, [Forms]![Contacts]![contactIDtxt] AS Expr1
FROM Contacts;
thanks!