I have an Access Database with 3 tables:
Account Managers
ID | Name | Office | Email | EmployeeID
Clients
ID | Name | EmployeeID
where EmployeeID indicates the responsible Account Manager. So far so good.
Now I also have Table3 (Task) where jobs regarding the clients gets registred.
Tasks
ID | Client Name | Task | Date | EmployeeID
My problem is, that when the Clients table gets updated (client gets a new Account Manager), that the EmployeeID on all tasks relating to this client i Table3 gets updated to the new EmployeeID.
Is it possible to “link” between the tables? Or would you suggest any other method?
Do not have Client Name and EmployeeID in Table3, but use ClientID instead.