Okay - I've got my update query to work with the following sql:
UPDATE [Annual Review Table] INNER JOIN [Loan Table] ON ([Annual Review Table].Borrower = [Loan Table].Borrower) AND ([Annual Review Table].Borrower = [Loan Table].Borrower) SET [Loan Table].[Relationship Manager] = [Annual Review Table].[Relationship Manager], [Loan Table].Branch = [Annual Review Table].[Branch], [Loan Table].Borrower = [Annual Review Table].[Borrower]
WHERE ((([Loan Table].[Annual Review Number])=[Annual Review Table].[Annual Review Number]));
It updates all the records I HAD in my table - but it's not updating the new records I have entered.... Each time I run it it says I'm updating 38 rows - which was my pre-existing data. I have added 6 more rows that need updating. Is there something I'm missing so that I can update everything?