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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
tim_m15
Resolver I
Resolver I

IF two Columns in Table have the same content / figures then output TRUE

Hello everyone,

 

I want to create a Filter-Measure, that output "1", if two specific columns in my table have same values in the same row.

 

For example:

 

No. | Article |             X         |             Y          |  output filter measure |

-----------------------------------------------------------------------------

1     | A         |     account 45 |   account 70    |   0   |

2     | B         |     account 2   |    account 2     |   1   |

3     | C         |     account 90 |    account 500 |   0   |

4     | D         |     account 7   |   account 7     |    1   |

 

 

In this example, my filter-measure should return "1" in line 2 and line 4 because the content in line 2 in column "X" is the same as well as in column "Y" (account 2). The same logic for line 4 (account 7)

 

Thanks for advice on how I can solve this.

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@tim_m15 Well, try:

 

Column = IF([X] = [Y],1,0)

Measure = IF(MAX([X]) = MAX([Y]),1,0)

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

@tim_m15 Well, try:

 

Column = IF([X] = [Y],1,0)

Measure = IF(MAX([X]) = MAX([Y]),1,0)

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...
amitchandak
Super User
Super User

@tim_m15 , a snew column this should work ?

if([X] =[Y],1,0)

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.