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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
MITHUN_NAIR
Regular Visitor

Need Help in DAX--Finding Duplicates

 

 

Hello ,

Need your help on this 

  • There are 2 Values in the Index Column i.e. 1 & 2 which indicates that these are coming from two different sources.
    ( I have appended these 2 sources and made a query in a single table which consists of 8 rows)
  • Now I want to create a calculated column where i need to find whether the contract number has duplicates or not between these 2 sources .

for instance Contract number "12" is present in both the sources 1 & 2 --Need to show if the contract Number from source 1 exists in source 2 or not.
if the contract number exists in source 2 then need to restrict this contract number from source 2 else will show the record.

 

MITHUN_NAIR_0-1648710347726.png

 

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

You could create a column like

Has duplicate = 
var indexToCheck = IF( 'Table'[Index] = 1, 2, 1 )
return 'Table'[Contract Number] IN CALCULATETABLE( VALUES('Table'[Contract Number]), REMOVEFILTERS('Table'), 'Table'[Index] = indexToCheck)

View solution in original post

1 REPLY 1
johnt75
Super User
Super User

You could create a column like

Has duplicate = 
var indexToCheck = IF( 'Table'[Index] = 1, 2, 1 )
return 'Table'[Contract Number] IN CALCULATETABLE( VALUES('Table'[Contract Number]), REMOVEFILTERS('Table'), 'Table'[Index] = indexToCheck)

Helpful resources

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

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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