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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
ItSupportElm
Helper III
Helper III

Show only one value for same Id else leave it blank

Hello,

 

I have an issue on my report and i dont know how to do it,

 

i have this table : 

 

IdRole     NameRole
1    AA
2    AB
3    AC

 

And this second table :

 

IdUser    IdRole
1    1
1    2
2    1
3

    3

 

And i have my last table for example with somes informations : 

IdUserDatePointNameRole
103/05/2021 500AA
101/05/2021 500AA
203/03/2020 800Blank
317/02/20201000Blank

 

I want to have this last colum as a result, The User have many role but the only Role that im interested is to know if he have "AA" role else leave it blank.

 

Im in DirectQuery if someone can help me please.

 

Thank you for the futur answer.

1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

@ItSupportElm,

 

Try this solution.

 

1. Create a Users table (one row per user).

2. Create a data model as shown below.

 

DataInsights_0-1620135189042.png

 

3. Create a calculated column in table UserPoints:

 

NameRole = 
VAR vRowCount =
    CALCULATE ( COUNTROWS ( UserRoles ), Roles[NameRole] = "AA" )
VAR vResult =
    IF ( vRowCount > 0, "AA" )
RETURN
    vResult

 

Result:

 

DataInsights_1-1620135274338.png

 

Your example shows Blank for IdUser2, but this user has role "AA". This is why my result is slightly different from yours.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

1 REPLY 1
DataInsights
Super User
Super User

@ItSupportElm,

 

Try this solution.

 

1. Create a Users table (one row per user).

2. Create a data model as shown below.

 

DataInsights_0-1620135189042.png

 

3. Create a calculated column in table UserPoints:

 

NameRole = 
VAR vRowCount =
    CALCULATE ( COUNTROWS ( UserRoles ), Roles[NameRole] = "AA" )
VAR vResult =
    IF ( vRowCount > 0, "AA" )
RETURN
    vResult

 

Result:

 

DataInsights_1-1620135274338.png

 

Your example shows Blank for IdUser2, but this user has role "AA". This is why my result is slightly different from yours.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors