I am trying to do a simple update query based on records match between 2 tables
but when i run the qry I get the error nessage
"The search key was not found in any record"
UPDATE [labour detail admin copy] INNER JOIN [Temp tbl] ON [labour detail admin copy].LD_ID = [Temp tbl].[ID Number] SET [labour detail admin copy].Scope = [Temp tbl]![Scope]
WHERE ((([labour detail admin copy].LD_ID)=[Temp tbl]![ID Number]));
Both join fields are Primary key fields
Can abyone help with this problem
Thanks in advance.
but when i run the qry I get the error nessage
"The search key was not found in any record"
UPDATE [labour detail admin copy] INNER JOIN [Temp tbl] ON [labour detail admin copy].LD_ID = [Temp tbl].[ID Number] SET [labour detail admin copy].Scope = [Temp tbl]![Scope]
WHERE ((([labour detail admin copy].LD_ID)=[Temp tbl]![ID Number]));
Both join fields are Primary key fields
Can abyone help with this problem
Thanks in advance.