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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

How to Select rows that has same value for certain columns, and different value for one column

Hello !

I am in a trouble finding a calculated column or measure that Select every rows that has the same value for the 3 columns Bank account, info 1 & info 2 AND when the Supplier is different (it shouldn't happen, thats why I want to detect these anomalies). To make it more clear, here is an example of what I should have with my measure:

Supplier     Bank account   info 1      info 2
A1000FranceEnergy
B1000FranceEnergy
C1000ChinaOil
A1000FranceGaz


The query should return these rows because these 2 suppliers have the same bank account number and same informations (this is an anomaly):

Supplier   Bank account        info 1    info2      
A1000FranceEnergy
B1000FranceEnergy
3 REPLIES 3
Jihwan_Kim
Super User
Super User

Picture1.png

 

Flag CC =
IF (
COUNTROWS (
FILTER (
Info,
Info[Supplier] <> EARLIER ( Info[Supplier] )
&& Info[Bank account] = EARLIER ( Info[Bank account] )
&& Info[info 1] = EARLIER ( Info[info 1] )
&& Info[info 2] = EARLIER ( Info[info 2] )
)
) >= 1,
1,
BLANK ()
)

 

 

https://www.dropbox.com/s/9cqlb3qbhp3pfxp/basbas.pbix?dl=0 

 

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.
Anonymous
Not applicable

Hello @Jihwan_Kim 

 

I have an issue with this query when I have more than around 5000 rows, it takes too much time and it ends up with a "Memory error, try again when you have more memory available".

 

Do you know how can I solve this problem ?

 

Thank you !

Anonymous
Not applicable

Thank you it works,

I have another question, do you know how to do the contrary, like one supplier has several lines that aren't composed of the same informations ?
Here it would show the two lines about supplier A:

Supplier     Bank account   info 1      info 2
A1000FranceEnergy
A1000FranceGaz

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.