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

Dynamic RLS filtering multiple tables

Hello,

 

I've got a test .pbix model built and am trying to implement row level security but am running into issues in passing multiple filters via DAX in Manage Roles. My data model looks like this:

tdhlonghorn_0-1597877242548.png

I'm able to successfully filter the first with the following code:

tdhlonghorn_1-1597877355736.png

Also in text form:

[Profile] IN
SELECTCOLUMNS(
FILTER('UserProfileAbbrP&L',
'UserProfileAbbrP&L'[User] = USERPRINCIPALNAME()
),
"Profile", [Profile]
)

 

But I'm striking out with the best method to filter the AbbrP&L table:

tdhlonghorn_2-1597877429157.png

Also in text form:

[Abbr P&L] IN
SELECTCOLUMNS(
FILTER('ProfileAbbrP&L',
'ProfileAbbrP&L'[Abbr P&L Account])
) IN
SELECTCOLUMNS(
FILTER('UserProfileAbbrP&L',
'UserProfileAbbrP&L'[User] = USERPRINCIPALNAME()
),
"Abbr P&L", [Abbr P&L]
)

 

What am I missing? I think I need to keep the structure as is (with the calculated Profile Bridge table) because there will be multiple instances of Profile in the UserProfile & ProfileAbbrP&L tables, but I am open to suggestions. I'd also like to avoid passing applying filters in both directions if possible.

 

Thanks in advance,

Tom

2 ACCEPTED SOLUTIONS
jdbuchanan71
Super User
Super User

@tdhlonghorn 

You don't actually need your security table joined into your model.  You just use a measure to read the USERPRINCIPALNAME() and build the list of 'AbbrP&L'[Abbr P&L] accounts that user can see.  One change you will need is to make the join between UserProfileAbbrP&L and Profile Bridge bi-directional.

jdbuchanan71_0-1597892837087.png

Then the filter on the on the AbbrP&L table looks like this.

'AbbrP&L'[Abbr P&L] IN 
CALCULATETABLE(
    VALUES('ProfileAbbrP&L'[Abbr P&L Account]),'UserProfileAbbrP&L'[User]=USERPRINCIPALNAME())

jdbuchanan71_1-1597892959684.png

jdbuchanan71_2-1597893018561.png

I have attached my updated copy of your file for you to look at.

 

 

View solution in original post

Your ProfileAbbrP&L already contains the accounts and the rollups that a profile can see. You just need to move the rollups to the AbbrP&L table so it looks like this:

jdbuchanan71_0-1598065806912.png

You can remove the Rollup tables from the profile side and set the UserProfileAbbrP&L > AbbrProfileBridge back to bi directional.  Then your filtering measure looks like this.

VAR _UPN = USERPRINCIPALNAME()
RETURN
'AbbrP&L'[Abbr P&L] IN 
    CALCULATETABLE(
        VALUES('ProfileAbbrP&L'[Abbr P&L Account]),'UserProfileAbbrP&L'[User]=_UPN)
||
'AbbrP&L'[Rollup] IN 
    CALCULATETABLE(
        VALUES('ProfileAbbrP&L'[Abbr P&L Account]),'UserProfileAbbrP&L'[User]=_UPN)

The model ends up looking like this.

jdbuchanan71_1-1598066062096.png

And the RLS will show all the accounts or rollups assigned to the profile in the [ProfileAbbrP&L] table:

jdbuchanan71_3-1598066238444.png

 

 

 

View solution in original post

6 REPLIES 6
jdbuchanan71
Super User
Super User

@tdhlonghorn 

You don't actually need your security table joined into your model.  You just use a measure to read the USERPRINCIPALNAME() and build the list of 'AbbrP&L'[Abbr P&L] accounts that user can see.  One change you will need is to make the join between UserProfileAbbrP&L and Profile Bridge bi-directional.

jdbuchanan71_0-1597892837087.png

Then the filter on the on the AbbrP&L table looks like this.

'AbbrP&L'[Abbr P&L] IN 
CALCULATETABLE(
    VALUES('ProfileAbbrP&L'[Abbr P&L Account]),'UserProfileAbbrP&L'[User]=USERPRINCIPALNAME())

jdbuchanan71_1-1597892959684.png

jdbuchanan71_2-1597893018561.png

I have attached my updated copy of your file for you to look at.

 

 

Thanks for the reply and the education, @jdbuchanan71! One element of the filter doesn't appear to be working correctly, however. The "Retail Stores" profile should filter to Retail Stores & Net Sales per the ProfileAbbrP&L table, do I need to alter the approach somehow?

@tdhlonghorn 

There is no 'Net Sales' entry in the 'AbbrP&L' table so that is why it is not showing up.

This unfortunately adds another layer of complexity; I had left off my AbbrP&L rollup table for simplicity, but I'll need to filter that table as well. I can't apply bi-directional filtering off of the user table twice, which leads me with one of two options:

  1. Have a user table for each level for which I'll have to filter (actually three, because I'm also filtering by AcctNum, which I also left off for simplicity)
  2. Figure out how to do this via DAX without bi-directional filters

I would certainly like to figure out option 2, is this at all possible?

 

Updated .pbix, and data model screenshot below:

tdhlonghorn_0-1598046385427.png

 

Your ProfileAbbrP&L already contains the accounts and the rollups that a profile can see. You just need to move the rollups to the AbbrP&L table so it looks like this:

jdbuchanan71_0-1598065806912.png

You can remove the Rollup tables from the profile side and set the UserProfileAbbrP&L > AbbrProfileBridge back to bi directional.  Then your filtering measure looks like this.

VAR _UPN = USERPRINCIPALNAME()
RETURN
'AbbrP&L'[Abbr P&L] IN 
    CALCULATETABLE(
        VALUES('ProfileAbbrP&L'[Abbr P&L Account]),'UserProfileAbbrP&L'[User]=_UPN)
||
'AbbrP&L'[Rollup] IN 
    CALCULATETABLE(
        VALUES('ProfileAbbrP&L'[Abbr P&L Account]),'UserProfileAbbrP&L'[User]=_UPN)

The model ends up looking like this.

jdbuchanan71_1-1598066062096.png

And the RLS will show all the accounts or rollups assigned to the profile in the [ProfileAbbrP&L] table:

jdbuchanan71_3-1598066238444.png

 

 

 

This works great, thanks @jdbuchanan71 ! I modified slightly to filter the Accounts table (as I'll also have to filter accounts). Can't wait to build it into my actual model.

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.