This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello to the forum,
I have the following table "Sales":
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 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
Solved! Go to Solution.
Hi @Jan_Trummel ,
According to your description,here's my solution. Use Row-level security (RLS) like this:
1.Click Home>Manage roles.
2.Add a new role, filter the Account column in Accounts table:
[Account] = USERPRINCIPALNAME()
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" }
)
Get the correct result:
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.
Hi @Jan_Trummel ,
According to your description,here's my solution. Use Row-level security (RLS) like this:
1.Click Home>Manage roles.
2.Add a new role, filter the Account column in Accounts table:
[Account] = USERPRINCIPALNAME()
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" }
)
Get the correct result:
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.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 61 | |
| 35 | |
| 30 | |
| 23 | |
| 22 |