K
Kathy R
I apologize if this question has been asked at least a
million times on this forum; I haven't found an efficient
way to search (or rather to view) the postings.
I have a Purchase Order form that includes about 8
matching fields that are also in the Participants subform.
I want to enter the data for these fields in the Purchase
Order form and then run an append query to add the record
to the Particpants table, but it's not working. It gives
no error msg -- looks like it should work, but nothing
gets appended. I've included the SQL statements from under
the hood of my query design grid; my criteria is [Forms]!
[Purchase Order]![PurchaseID]. Thanks SO much in advance.
INSERT INTO Participants ( PurchaseID, FirstName,
LastName, DayPhone, EvePhone, Address, City, State, Zip,
Country, [HowDidYouFindUs?] )
SELECT [Purchase Order].PurchaseID, [Purchase
Order].FirstName, [Purchase Order].LastName, [Purchase
Order].DayPhone, [Purchase Order].EvePhone, [Purchase
Order].Address, [Purchase Order].City, [Purchase
Order].State, [Purchase Order].Zip, [Purchase
Order].Country, [Purchase Order].[HowDidYouFindUs?]
FROM [Purchase Order]
WHERE ((([Purchase Order].PurchaseID)=[Forms]![Purchase
Order]![PurchaseID]));
million times on this forum; I haven't found an efficient
way to search (or rather to view) the postings.
I have a Purchase Order form that includes about 8
matching fields that are also in the Participants subform.
I want to enter the data for these fields in the Purchase
Order form and then run an append query to add the record
to the Particpants table, but it's not working. It gives
no error msg -- looks like it should work, but nothing
gets appended. I've included the SQL statements from under
the hood of my query design grid; my criteria is [Forms]!
[Purchase Order]![PurchaseID]. Thanks SO much in advance.
INSERT INTO Participants ( PurchaseID, FirstName,
LastName, DayPhone, EvePhone, Address, City, State, Zip,
Country, [HowDidYouFindUs?] )
SELECT [Purchase Order].PurchaseID, [Purchase
Order].FirstName, [Purchase Order].LastName, [Purchase
Order].DayPhone, [Purchase Order].EvePhone, [Purchase
Order].Address, [Purchase Order].City, [Purchase
Order].State, [Purchase Order].Zip, [Purchase
Order].Country, [Purchase Order].[HowDidYouFindUs?]
FROM [Purchase Order]
WHERE ((([Purchase Order].PurchaseID)=[Forms]![Purchase
Order]![PurchaseID]));