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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

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-in-Power/td-p/712613

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
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.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.