sawilliams
Technical User
This is weird. I am running an append query from a parameter on a form. It works fine except it updates the first record in the appended table. This is the scenario. I am adding event attendance information for customers by adding the customer number and event name to the events table. If customer #1 already has an event called "A-LIST PARTY", (even if he is not on the new invite list), this first entry for the first customer in the events table will be updated to the name of the new Event. I deleted all of Customer #1's event information and ran the append query again, now the first event of Customer #2 gets updated to be the name of the new event. So, my query is updating only the first row in the table and appending all the other rows properly.
Here is my sql for the query:
PARAMETERS [forms]![form1].[Event] Text ( 255 );
INSERT INTO tblEventAttendance ( Cust_ID, Event )
SELECT tblListBuilder.Cust_ID, [forms]![form1].[Event] AS EventName
FROM tblListBuilder;
Help would be greatly appreciated.
Here is my sql for the query:
PARAMETERS [forms]![form1].[Event] Text ( 255 );
INSERT INTO tblEventAttendance ( Cust_ID, Event )
SELECT tblListBuilder.Cust_ID, [forms]![form1].[Event] AS EventName
FROM tblListBuilder;
Help would be greatly appreciated.