I have looked up how to do this and found answers here.
I have set up a basic MS Access 2013 database to test this and have tried both solutions.
When I try to run the below:
UPDATE
Tbl1 as A
INNER JOIN tbl2 AS B ON A.userID = B.UserID
SET A.userID = B.[UserID];
I get a message box saying that I am about to update 0 rows. Even though there is UserID data in tbl2.
When I try:
UPDATE A
SET A.[UserID] = B.[UserID]
FROM tbl1 A, tbl2 B WHERE A.[UserID] = B.[UserID]
I get a "Syntax error (missing operator) in query expression"
I did note that someone mentioned in the comments that the second solution wouldn't work in Access 2013 but like I said, the first solution isn't working either.
Does anyone know where I'm going wrong?