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

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
Resident Rockstar
Resident Rockstar

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

blopez11
Resident Rockstar
Resident Rockstar

Maybe try:

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

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.