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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

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()) <> "[email protected]" THEN
[Emp_ID] = USERNAME()
END IF;

ALSO TRIED:

IF UPPER(USERNAME()) ="[email protected]",[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 : [email protected] 
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
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.

Top Solution Authors