Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Chanise89
Helper I
Helper I

USERELATIONSHIP function to return text

Hi All, 

I hope someone can help me with this.

 

I have two tables:

Table 1: Is the Hierarchy levels for our Centers (For my report I only need Level 5 and Level 6) 

Table 2: is the Center and the owners

 

In Power Query, I did merged the two tables together to create new columns for 'Level 5 owners" and "Level 6 owners" 

Then I made a relationship between the Owner table and and the newly merged table. 

 

My issue is:

I have to use a Matrix table because we need the users to drill down from Level 5 to Level and see the owners at each level as well. Which means I would need the owners for both levels to be in one Column/Field. 

 

I tried using this measure - which kind of works but using Min or Max doesn't give me the correct owner (sometimes)

Chanise89_0-1713995281757.png

 

the table on the right is what it should be

Chanise89_1-1713995377612.png

 

Any help will be greatly appreciated! 

 

1 REPLY 1
amitchandak
Super User
Super User

@Chanise89 , I think you need switch measure based on level, using isinscope

 

Switch(True(),
isinscope(OnwerTable[Level 6]), CALCULATE(Min(OnwerTable[VCHNAME]),USERELATIONSHIP(OnwerTable[VCHNAME],Merge[Level 6 Owner])),
isinscope(OnwerTable[Level 5]), CALCULATE(Min(OnwerTable[VCHNAME]),USERELATIONSHIP(OnwerTable[VCHNAME],Merge[Level 5 Owner])))

 

 

How to Switch Subtotal and Grand Total in Power BI | Power BI Tutorials| isinscope: https://youtu.be/smhIPw3OkKA

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Top Solution Authors