Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 52 | |
| 37 | |
| 35 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 73 | |
| 70 | |
| 39 | |
| 34 | |
| 23 |