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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Anonymous
Not applicable

Filtering DAX RLS

Hi Everyone,

 

Would you please tell me what might be wrong in the following DAX RLS expression?

 

( [EMC EMAIL] || [DELL EMAIL] ) = userprincipalname()

 

I have two email columns, one @dell.com and the other @emc.com ... so whether username at dell or at emc to filter this column.

 

Please help 

 

thanks,

Amr

1 ACCEPTED SOLUTION
blopez11
Super User
Super User

Maybe try:

( [EMC EMAIL] = userprincipalname () || [DELL EMAIL] = userprincipalname() )

View solution in original post

3 REPLIES 3
v-yingjl
Community Support
Community Support

Hi @Anonymous ,

When using your RLS expression, it will produce the following error message:

RLS error.png

As the error message mentioned, ( [EMC EMAIL] || [DELL EMAIL] )  is a true / false expreesion while userprincipalname() is a text expression, they cannot be compared with each other.

 

The right expression should be like @blopez11  mentioned:

[DELL EMAIL] = userprincipalname() || [EMC EMAIL] = userprincipalname()

It will work when checking the RLS role.

RLS result.png

 

Best Regards,
Yingjie Li

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

 

amitchandak
Super User
Super User

@Anonymous , print userprincipalname() on card and check

 

Refer : https://community.powerbi.com/t5/MBAS-Gallery/Microsoft-Power-BI-Unleash-row-level-security-patterns...

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
blopez11
Super User
Super User

Maybe try:

( [EMC EMAIL] = userprincipalname () || [DELL EMAIL] = userprincipalname() )

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

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.