I want to have a query calculate a field (and ID) and then lookup that ID in a table to turn it into clear text.
Say I have two tables - one with Clients and the Employee Rep associated with them, and the 2nd with employee IDs and names. But, the workload is reorganizing, and so some clients will be assigned new employee representatives. I want to use a query to generate those new client/employee relationships.
The ID of the new Employee Rep is calculated in the query (changing B to A) and then I want to lookup the new ID in the employee ID table to get the new name. How do I do that lookup within a query?
Say I have two tables - one with Clients and the Employee Rep associated with them, and the 2nd with employee IDs and names. But, the workload is reorganizing, and so some clients will be assigned new employee representatives. I want to use a query to generate those new client/employee relationships.
The ID of the new Employee Rep is calculated in the query (changing B to A) and then I want to lookup the new ID in the employee ID table to get the new name. How do I do that lookup within a query?