norwoodkd2001
New Member
- Joined
- Jun 30, 2015
- Messages
- 10
I have a table called Score which has records of individuals scores for a certain requirement presented by a vendor. The list of requirements is in another Table called Requirements. In the Score table we have entered a Requirement ID that corresponds to the requirement in the Requirements table.
Both tables have the Requirement ID which is what I am using to select the correct record.
I am running this update query but nothing is updating in the Score.Requirement field. What am I doing wrong?
UPDATE ScoreINNER JOIN Requirements ON Score.[Requirement ID] = Requirements.[Requirement ID]
SET Score.Requirement = [Requirements]![Requirement];
Both tables have the Requirement ID which is what I am using to select the correct record.
I am running this update query but nothing is updating in the Score.Requirement field. What am I doing wrong?
UPDATE ScoreINNER JOIN Requirements ON Score.[Requirement ID] = Requirements.[Requirement ID]
SET Score.Requirement = [Requirements]![Requirement];