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
renanpinheiro
Helper I
Helper I

Dynamic RLS

Hi guys.
I need to create a dynamic RLS as follows:
I have a training table, which has an instructor column. I need to share the panels with the instructors, but only the training data they gave.

Who can help me?

1 ACCEPTED SOLUTION
v-yuezhe-msft
Employee
Employee

@renanpinheiro,

Add another email address column for the instructors in your table, then use USERNAME() function to implement dynamic row level security as described in the following similar blog.

http://radacad.com/dynamic-row-level-security-with-power-bi-made-simple

Regards,
Lydia

Community Support Team _ Lydia Zhang
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

7 REPLIES 7
v-yuezhe-msft
Employee
Employee

@renanpinheiro,

Add another email address column for the instructors in your table, then use USERNAME() function to implement dynamic row level security as described in the following similar blog.

http://radacad.com/dynamic-row-level-security-with-power-bi-made-simple

Regards,
Lydia

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

I handle Dynamic RLS using PATHCONTAINS() and USERPRINCIPALNAME() functions. I added a calculated column to my “users” table.

MgrPath = PATH([user_id],[user_mgr]). the data for the arguments are columns coming from SQL. This creates a custom column showing the “path” of the user all the way to the last manager. in other words it traces the current user and stores each manager. So if Mike reports to John reports to Kevin reports to Henry – the resulting data field would yield , read from left to right: “Henry|Kevin|John|Mike”

Once I did that, the RLS goes on the users table. simply:
ViewAs.jpg

What this does:
1. Look up the user’s email address (who are they logged in as?). Bring back the corresponding user_id (Mike)
2. If that user_id exists in the newly created MgrPath field, return that record. This means if I’m logged in as Kevin I will see all of Mike’s data AND all of John’s data (and anyone else who is managed by John). If I’m logged in as Mike, I will only see Mike’s data – because Mike is at the end of the “path”.

 

People in management positions will see data for all users for whom they are in their "path".

 

Works like a charm!

boovda
Frequent Visitor

@Tadder Fantastic method, very effective and just what I was looking for. Thanks for sharing it's very much appreciated.

Wish I could say it was my idea Smiley Happy but it's wasn't.  glad it worked out for you guys!!

Anonymous
Not applicable

Hi there,

Can you tell us please what table name and column name do you use in your SQL table?

My roll is based Departments like |22|24|44| and user principle assigh to these rolls

 

Thanks

Oded Dror

 

@Anonymous I'm not sure I understand your question fully..  The calculated column MgrPath = PATH([user_id],[user_mgr]) is set in the USERS_REVERE table.  It uses two columns that come from a sql query, user_id and user_mgr.  the PATH function creates a | delimited string showing that user's managerial hierarchy.

 

Then the VLOOKUP and PATHCONTAINS functions simply looks for the current logged in users name in that string.  If their name appears then any data related to that record will show for the user.

Anonymous
Not applicable

Tadder,

 

Thank you

 

Oded Dror

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.