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
Blizzard
Regular Visitor

How to count duplicate values only once in a column

Hi all,

 

I want to identify in a column (not as a measure) all values for a specific ID only once. 

 

IDDateUnique
1009.11.2017YES
201.12.2017YES
1011.11.2011NO

 

The respective formular in Excel works fine as follows:

 

=IF(MATCH(A4,A:A,0)=ROW(),"YES","NO")

 

What I wanted to do is, that the last entry of an ID is identified as unique (column C) and all past values of the same ID should be marked as "no". Therefore the DISTINCTCOUNT formular with filter is not working. In that case, all double values would be counted > 1. For ID 10 the outcoume would be 2 for both rows but I want to count ID excatly one time as unique.

 

I dont want to delete duplicate rows.

 

Does anyone has an idea how to solve that problem?

 

Regards

Michael

1 ACCEPTED SOLUTION
Vvelarde
Community Champion
Community Champion

@Blizzard

 

Hi, try with this calculated column

 

Unique =
IF (
    CALCULATE (
        MAX ( Table1[Date] );
        FILTER ( Table1; Table1[ID] = EARLIER ( Table1[ID] ) )
    )
        = Table1[Date];
    "Yes";
    "No"
)

Regards

 

Victor

Lima - Peru




Lima - Peru

View solution in original post

2 REPLIES 2
Vvelarde
Community Champion
Community Champion

@Blizzard

 

Hi, try with this calculated column

 

Unique =
IF (
    CALCULATE (
        MAX ( Table1[Date] );
        FILTER ( Table1; Table1[ID] = EARLIER ( Table1[ID] ) )
    )
        = Table1[Date];
    "Yes";
    "No"
)

Regards

 

Victor

Lima - Peru




Lima - Peru

@Vvelarde

 

Hi Victor,

 

your solution worked perfect. I had to change the initial idea from the latest to the earliest date, but that was easy with your solution!

 

Thanks a lot,

 

Michael

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.