Hello I am trying to make a report where I have something like
+--------------+---------------+----------------------+-------------+
| Employee ID | Employee Name | Manager Employee ID | Manger Name |
+--------------+---------------+----------------------+-------------+
| E001 | Bob Jones | E005 | Liz Bates |
| E002 | John Smith | E005 | Liz Bates |
| E003 | Jane Adams | E005 | Liz Bates |
| E004 | Al Doe | E005 | Liz Bates |
| E005 | Liz Bates | E006 | Jake Mann |
+--------------+---------------+----------------------+-------------+
I have the data items for "Employee ID", "Employee Name", and "Manager Employee ID". but there is no specific item for "Manager Name". How do i create a data item for "Manager Name" based on "Employee Name" for the given "Manager Employee ID". When I drag in "Employee Name" again to the right of "Manager Employee ID" it just gives me the employee based on the "Employee ID" and not "Manager Employee ID".
I have this question and answer multiple times on this site but they all are for SQL, which I don't know anything about.
SQL query to get the employee name and their manager name from the same table
Self Join to get employee manager name
How to get the employees with their managers
etc.