Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
I have 3 tables as given below. Table 3 is the user info table.
I now need to get the Manager name based on the Manager Id in table2. However, i cannot create a relationship between table2 & table3 due to the existence of the relationship between table1 & table3.
I cannot use the RELATED command in table2 since it returns the requestor name due to the existence of indirect relatioship.
Any thought on how to solve this issue?
hello @Phil_Seamark,
i tried LOOKUPVALUE as follows:
Is that because there is no match?
hello @Phil_Seamark,
Doesnt seems so. Please see the image below... in some cases you get the name (first column) & for some its blank. (the manager id is in second column)
Hi ,
Try this,
Manager Name = if( COUNTROWS(Assigment)=1, LOOKUPVALUE(User[Name],User[ID],VALUES(Assigment[Managere ID])))
Thanks
Sankar P
Hello @sankarvinop,
It doesnt work since table2 has more that 1 rows, so :
COUNTROWS(Assigment)=1 is always false
Hi,
Can you share some sample data?
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 49 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |