I have the following query:
When I run this query, it is supposed to update the tblPersonal.FCSD with the ParticipantListing.[START DATE] for people designated as "members".
When I run the query from design mode, it displays one column with the heading of "START DATE" and a list of dates. When I run the query by doubleclicking it, it says that it is going to update 144 rows, and I say Yes, but nothing is updated.
When I check the tblPersonal table, the FCSD field has no updates.
Any clue as to what I'm doing wrong?
Thanks for any help!
Code:
UPDATE ParticipantListing INNER JOIN tblPersonal ON ParticipantListing.User = tblPersonal.User SET ParticipantListing.[START DATE] = [tblPersonal].[FCSD]
WHERE (((ParticipantListing.[MEMBER STATUS])=". Yes a Member"));
When I run this query, it is supposed to update the tblPersonal.FCSD with the ParticipantListing.[START DATE] for people designated as "members".
When I run the query from design mode, it displays one column with the heading of "START DATE" and a list of dates. When I run the query by doubleclicking it, it says that it is going to update 144 rows, and I say Yes, but nothing is updated.
When I check the tblPersonal table, the FCSD field has no updates.
Any clue as to what I'm doing wrong?
Thanks for any help!