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
Anonymous
Not applicable

HOW TO EXCLUDE USER FROM RLS

samiply I need to exclude the Super End user from RLS Rols,

in order to disply all data to him.

IF UPPER(USERNAME()) <> "ALEX@MICROSOFT.COM" THEN
[Emp_ID] = USERNAME()
END IF;

ALSO TRIED:

IF UPPER(USERNAME()) ="ALEX@MICROSOFT.COM",[Emp_ID] = USERNAME(),TRUE)

 

but I am grtting below error

any advice ?

EXCLUDE FROM RLS.PNG

3 REPLIES 3
Icey
Community Support
Community Support

Hi @Anonymous ,

You can refer to this article.

My test results are as follows:

1. Two tables:

HOW TO EXCLUDE USER FROM RLS.PNG

'Is Super End User' is a measure crested like so:

Is Super End User =
IF ( MAX ( Sales[SalesPerson] ) = "A", 1, 0 )

2. Manage Roles:

IF (
    MAXX ( FILTER ( 'Email', 'Email'[Email] = USERNAME () ), [Is Super End User] ) = 0,
    Email[Email] = USERNAME (),
    1 = 1
)

HOW TO EXCLUDE USER FROM RLS 2.png

3. Result for SalesPerson A,

HOW TO EXCLUDE USER FROM RLS _ result for A.png

Result for SalesPerson C,

HOW TO EXCLUDE USER FROM RLS _ result for c.png

Best Regards,

Icey Zhang

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Anonymous
Not applicable

Thanks for the great explination, @Icey 

BUT , the USER is not included on data ....

this user : ALEX@MICROSOFT.COM 
Doesn`t have any records in AGTREF_DIM_RLS table

kindly advice

 

Icey
Community Support
Community Support

Hi @Anonymous ,

1. You can create another two tables - 'User' and 'Access' or just one table. 

HOW TO EXCLUDE USER FROM RLS - follow .png

2. Create relationships among them.

3. Manage Roles:

IF (
    MAXX (
        FILTER ( 'User', 'User'[Email] = USERNAME () ),
        RELATED ( 'Access'[Access] )
    ) = "Personal Data",
    User[Email] = USERNAME (),
    "ALL Data" = "All Data"
)

4. Publish to Power BI Service and Manage security on the model.

5. The result for User C:

HOW TO EXCLUDE USER FROM RLS - follow C.png

The result for User 😧

HOW TO EXCLUDE USER FROM RLS - follow D.png

Best Regards,

Icey

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.

Top Solution Authors