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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
Jan_Trummel
Helper IV
Helper IV

Role based on location

Hello to the forum,

 

I have the following table "Sales":

 

The sales come from different regions.The sales come from different regions.

As you can see, sales are generated either in the "North" region or in the "South" region.
But there are people who are only allowed to see sales from either North or South or from both regions.
I recorded these conditions in the “Accounts” table:

 

The "Accounts" table shows who can see sales from which regionsThe "Accounts" table shows who can see sales from which regions

 

The challenge is that the user "Charlie" is allowed to see sales from all regions.

I would like to define a role that, depending on the email address in the "Account" column, only shows the logged-in Power BI user the sales intended for him.

Do you have an idea how I can realize this?

 

Can you help me?

 

Greetings

1 ACCEPTED SOLUTION
v-yanjiang-msft
Community Support
Community Support

Hi @Jan_Trummel ,

According to your description,here's my solution. Use Row-level security (RLS) like this:

1.Click Home>Manage roles.

vyanjiangmsft_0-1691747639507.png

2.Add a new role, filter the Account column in Accounts table:

[Account] = USERPRINCIPALNAME()

vyanjiangmsft_1-1691747802931.png

3.Filter the Location column in Sales table:

SWITCH (
    MAXX (
        FILTER ( 'Accounts', 'Accounts'[Account] = USERPRINCIPALNAME () ),
        'Accounts'[Location]
    ),
    "North", [Location] = "North",
    "South", [Location] = "South",
    "ALL", [Location] IN { "South", "North" }
)

vyanjiangmsft_2-1691747900013.png

Get the correct result:

vyanjiangmsft_3-1691747975943.png

vyanjiangmsft_4-1691747988190.png

I attach my sample below for your reference.

 

Best Regards,
Community Support Team _ kalyj

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Jan_Trummel
Helper IV
Helper IV

Thank you @v-yanjiang-msft

 

that is exactly what I wanted!

v-yanjiang-msft
Community Support
Community Support

Hi @Jan_Trummel ,

According to your description,here's my solution. Use Row-level security (RLS) like this:

1.Click Home>Manage roles.

vyanjiangmsft_0-1691747639507.png

2.Add a new role, filter the Account column in Accounts table:

[Account] = USERPRINCIPALNAME()

vyanjiangmsft_1-1691747802931.png

3.Filter the Location column in Sales table:

SWITCH (
    MAXX (
        FILTER ( 'Accounts', 'Accounts'[Account] = USERPRINCIPALNAME () ),
        'Accounts'[Location]
    ),
    "North", [Location] = "North",
    "South", [Location] = "South",
    "ALL", [Location] IN { "South", "North" }
)

vyanjiangmsft_2-1691747900013.png

Get the correct result:

vyanjiangmsft_3-1691747975943.png

vyanjiangmsft_4-1691747988190.png

I attach my sample below for your reference.

 

Best Regards,
Community Support Team _ kalyj

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

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

May 2025 Monthly Update

Fabric Community Update - May 2025

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