Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We'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

Reply
Anonymous
Not applicable

Multi access dynamic row level security

Hi, (Long explenation follows, with question in the end)

I have implemented row lavel security based on this table:

ingvildeline_0-1677586416495.png

The logic behind it is that all my data belong to one "Kommune", and every "Kommune" belongs to a "Fylke".

 

- If i wirite something in "Kommune", for example "Stavanger" in row 16, and the beloning "Fylke" (here: "Rogaland"), I get data for only "Stavanger" kommune. 

- If I write "None" in "Kommune", but something in "Fylke", for example "None" and "Trøndelag" in row 14, I get the data for all the "kommune" belonging under "Trøndelag".

- If I write "None" in both columns, like row 15, I get the data for all "Kommune" in all "Fylke" that exists. 

 

The RLS is implemented like: 

var _RestrictionKommune=
CALCULATETABLE(
VALUES(RLS[Kommune]),
RLS[E-mail]=USERPRINCIPALNAME()
)

var _RestrictionFylke=
CALCULATETABLE(
VALUES(RLS[Fylke]),
RLS[E-mail]=USERPRINCIPALNAME()
)

Return
IF(
AND(_RestrictionKommune="None", [Fylke]=_RestrictionFylke), TRUE(),
IF(AND(_RestrictionKommune="None", _RestrictionFylke="None"), TRUE(),
IF([Kommune]=_RestrictionKommune, TRUE(), FALSE())))

 

This filters another table with the releationship between "kommune" and "fylke". The start of that table looks like this:

ingvildeline_2-1677586951062.png

All other data is connected to this table. 

 

However, I want to give som users access to several "Kommune". How can I set up this?

 

0 REPLIES 0

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.