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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
efowler
Helper II
Helper II

Distinct Count when looking at multiple fields in table

Hello...  I have a long standing challange to properly calucate what I call "Distinct Repair".   I have a sample data table attached which shows the overall data and column E shows what would be considered a Count = 1.  My notes are below and this data is related to repair data on a product. 

 

Goal = To count distinct repairs in which there are more than one rows (unique Claim #) for the same product on the same date with same repair part. 

 

Challange = A single repair can show in the data set as two rows each with a unique claim #.  When the Product Serial #, PFP, and Repair Date are all the same between the two row it should be counted a Distinct Repair = 1

 

Any ideas on how to write the DAX for this? 

LINK TO SAMPLE DATA SET 

1 ACCEPTED SOLUTION
v-easonf-msft
Community Support
Community Support

Hi, @efowler 

Please check if formula below could help:

Result =
VAR min_Claim =
    MINX (
        FILTER (
            ALL ( 'Table' ),
            'Table'[Product SN] = EARLIER ( 'Table'[Product SN] )
                && 'Table'[PFP] = EARLIER ( 'Table'[PFP] )
                && 'Table'[Repair Date] = EARLIER ( 'Table'[Repair Date] )
        ),
        'Table'[Claim #]
    )
RETURN
    IF ( 'Table'[Claim #] = min_Claim, 1, BLANK () )

veasonfmsft_0-1669960735610.png

 

Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-easonf-msft
Community Support
Community Support

Hi, @efowler 

Please check if formula below could help:

Result =
VAR min_Claim =
    MINX (
        FILTER (
            ALL ( 'Table' ),
            'Table'[Product SN] = EARLIER ( 'Table'[Product SN] )
                && 'Table'[PFP] = EARLIER ( 'Table'[PFP] )
                && 'Table'[Repair Date] = EARLIER ( 'Table'[Repair Date] )
        ),
        'Table'[Claim #]
    )
RETURN
    IF ( 'Table'[Claim #] = min_Claim, 1, BLANK () )

veasonfmsft_0-1669960735610.png

 

Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Works perfect, thank you!

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.