Go to Access HELP, show TABLE OF CONTENTS, find JET SQL REFERENCE.
In that reference, find the UPDATE statement. I think it shows an example of multi-table update.
This machine I'm on doesn't have Access installed, but I know I've done it before on my home machine.
I think it *MIGHT* be as simple as
Code:
Update tblEID, tblWT_Temp
Set tblEID.TermDate = tblWT_Temp.TermDate
WHERE tblWT_Temp.EmpNum = tblEID.EmpNum
But check the Access documentation to be sure.