Hello
I have a table like this
Company | principalName | Data |
company1 | user1 | .. |
company1 | user2 | .. |
company2 | user3 | .. |
company2 | user4 | .. |
Wenn a User (user1 and 2) from Company1 open the report he should see all data from company1.
User (user3 and 4) from company2 will only see Data from company2
principalName is USERPRINCIPALNAME()
How can i write a Filter Dax Expression?
Thanks
Solved! Go to Solution.
Hi @freak ,
It sounds like you need an RLS setup with hierarchy.
You could try using Dynamic Row Level Security with Manager Level Access in Power BI.
The very first step is always identifying who is the person logged into the report in Power BI Service. This can be done with Username() or UserPrincipalName() functions in DAX.
We can use a DAX expression to identify is the person logged in, a manager or not. This can be done with a simple MAXX expression.
For more information,you can refer to:Dynamic Row Level Security with Manager Level Access in Power BI
Hope it helps,
Community Support Team _ Caitlyn
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi @freak ,
It sounds like you need an RLS setup with hierarchy.
You could try using Dynamic Row Level Security with Manager Level Access in Power BI.
The very first step is always identifying who is the person logged into the report in Power BI Service. This can be done with Username() or UserPrincipalName() functions in DAX.
We can use a DAX expression to identify is the person logged in, a manager or not. This can be done with a simple MAXX expression.
For more information,you can refer to:Dynamic Row Level Security with Manager Level Access in Power BI
Hope it helps,
Community Support Team _ Caitlyn
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Yes this works, but i want more 🙂
When i use [principalName] = USERPRINCIPALNAME(), user1 see only data from user1. user1 should see data from company1, as well from user2 but not from user3 and 4
@freak , In role you can add filter
[principalName] = USERPRINCIPALNAME()
Is this expression not working ?
How to use Row Level Security (RLS): https://youtu.be/NfdIA0uS6Nk
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
At the monthly call, connect with other leaders and find out how community makes your experience even better.
User | Count |
---|---|
392 | |
102 | |
67 | |
55 | |
45 |
User | Count |
---|---|
377 | |
115 | |
79 | |
65 | |
53 |