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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
alagator28
Helper I
Helper I

RLS Filter with both OR and AND in same table

I'm having trouble formatting my RLS filters with both OR and AND on the same table. It seems that it doesn't like regular dax format...

 

If I wanted to filter for both criteria below, how could I format it?

 

  • "PrincipalClientManagerUsername" = userprincipalname() OR "PrincipalClientUsername" = userprincipalname()
  • AND "ColumnA" = "123"

 

The syntax below in the screenshot works fine for the first criteria, but I can't figure out how to add an "AND" correctly.

 

Thanks in advance.

 

RLS Filters.png

 

 

 

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

You need to protect the OR from the AND. Use Parentheses or IN

 

USERPRINCIPALNAME() IN {[PrincipalClientManagerUsername],[PrincipalClientUsername] && [Column A]="123"

 

 

 

View solution in original post

2 REPLIES 2
lbendlin
Super User
Super User

You need to protect the OR from the AND. Use Parentheses or IN

 

USERPRINCIPALNAME() IN {[PrincipalClientManagerUsername],[PrincipalClientUsername] && [Column A]="123"

 

 

 

Thank you @lbendlin , this worked perfectly. I thought I had tried that, but I must have had the syntax wrong. Very simple and it works just fine. Have a great day 🙂

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors
Top Kudoed Authors