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
spaturu3234
Frequent Visitor

How can I compare three columns in DAX

I Have three calculated columns X,Y,Z

 

I need to compare X=Y=Z and flag them if they are not equal 

 

I can do by creating a three different columns agian  like

X=Y

Y=Z

X=Z

 

If all have true then TRUE

 

But, Is there any easy way to do it in DAX ?

1 ACCEPTED SOLUTION
v-huizhn-msft
Employee
Employee

Hi @spaturu3234,

You just need to create a calculated column using the formula.

Flag = IF(Table4[Column1]=Table4[Column2]&&Table4[Column2]=Table4[Column3]&&Table4[Column1]=Table4[Column3],"True","False")


I create a sample table and test it, please see the result below.

1.PNG

Best Regards,
Angelia

View solution in original post

2 REPLIES 2
v-huizhn-msft
Employee
Employee

Hi @spaturu3234,

You just need to create a calculated column using the formula.

Flag = IF(Table4[Column1]=Table4[Column2]&&Table4[Column2]=Table4[Column3]&&Table4[Column1]=Table4[Column3],"True","False")


I create a sample table and test it, please see the result below.

1.PNG

Best Regards,
Angelia

Vvelarde
Community Champion
Community Champion

@spaturu3234

 

NewColumn = Table1[Column1]=Table1[Column2] && Table1[Column1]=Table1[Column3] && Table1[Column2]=Table1[Column3]




Lima - Peru

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.