Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hello guys!
I have a table with employees as shown below. I want to generate a new table containg the names of all those employees who are also managers. I think the two tables make it clear enough.
Employees table (given)
Managers table
So far I have produced the new table containg only the employee IDs that are managers but not sure if that's the right way to proceed.
Managers = FILTER (
DISTINCT (
SELECTCOLUMNS ( Employees, "managerID", Employees[manager] )
),
NOT ( ISBLANK ( [managerID] ) )
)
Thanks in advance,
Panos
Solved! Go to Solution.
Hello @pgoum
Give this a try.
Managers =
VAR ManagerList = DISTINCT( Employees[manager] )
RETURN
CALCULATETABLE(
SUMMARIZE(
Employees,
Employees[EmpID],
Employees[EmpName]),
Employees[EmpID] IN ManagerList
)
Just an alternative
Calc Table =
CALCULATETABLE (
Employees,
TREATAS ( VALUES ( Employees[manager] ), Employees[empID] )
)
Just an alternative
Calc Table =
CALCULATETABLE (
Employees,
TREATAS ( VALUES ( Employees[manager] ), Employees[empID] )
)
Hello @pgoum
Give this a try.
Managers =
VAR ManagerList = DISTINCT( Employees[manager] )
RETURN
CALCULATETABLE(
SUMMARIZE(
Employees,
Employees[EmpID],
Employees[EmpName]),
Employees[EmpID] IN ManagerList
)
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 25 | |
| 23 | |
| 22 | |
| 17 | |
| 14 |
| User | Count |
|---|---|
| 25 | |
| 24 | |
| 20 | |
| 19 | |
| 19 |