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
o59393
Post Prodigy
Post Prodigy

Count non duplicate values

Hi all

 

I need to have a kpi for the number of times a "C" appears in column called FSSC 22000

 

The formula I use is very simple:

 

 

FSSC 22000 Compliance = CALCULATE(COUNT('Suppliers Compliance'[FSSC 22000]),'Suppliers Compliance'[FSSC 22000]="C")

 

 

The KPI is calculated, however the problem is that i have duplicated values and the above formula is counting twice the duplicated value and I would like it to count only once.

 

Without duplicates I have 112 categorized as "C", with duplicates 127.

 

How can I have a dax that calculates the KPI considering only non duplicates.

 

A duplicate appears in the id column, for example there are 2 under 25:

 

dupliactes.PNG

 

I attach the pbix

 

https://1drv.ms/u/s!ApgeWwGTKtFdhjG8zPomag51V-hH?e=KiqKaA

 

Thanks

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@o59393 

Have you tried distinctcount

FSSC 22000 Compliance = CALCULATE(DISTINCTCOUNT('Suppliers Compliance'[FSSC 22000]),'Suppliers Compliance'[FSSC 22000]="C")
Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@o59393 

Have you tried distinctcount

FSSC 22000 Compliance = CALCULATE(DISTINCTCOUNT('Suppliers Compliance'[FSSC 22000]),'Suppliers Compliance'[FSSC 22000]="C")
Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Thanks!

 

Just did what you mentioned+ changing the denominator with the distinctcount also.

 

FSSC 22000 Compliance = CALCULATE(DISTINCTCOUNT('Suppliers Compliance'[Id]),'Suppliers Compliance'[FSSC 22000]="C") / DISTINCTCOUNT('Suppliers Compliance'[Id])

 

Regards. 

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.