Excelerate2004
Programmer
This should be simple, but I can't work it out, I have two tables:
1. Master
2. Merge
I want to update the field in the Merge table called 16944 with the values that are in the Master table in a field called Call, only when the field in Master, ASSAY_ID = 16944.
The Primary Key in both tables is called SAMPLE_ID
So in terms of Pseudo code:
UPDATE 16944
FROM Merge
WHERE [Merge]![16944] = [Master]![CALL]
Am I on the right track? What am I missing?
Thanks for any help I can get.
1. Master
2. Merge
I want to update the field in the Merge table called 16944 with the values that are in the Master table in a field called Call, only when the field in Master, ASSAY_ID = 16944.
The Primary Key in both tables is called SAMPLE_ID
So in terms of Pseudo code:
UPDATE 16944
FROM Merge
WHERE [Merge]![16944] = [Master]![CALL]
Am I on the right track? What am I missing?
Thanks for any help I can get.