Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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:
I attach the pbix
https://1drv.ms/u/s!ApgeWwGTKtFdhjG8zPomag51V-hH?e=KiqKaA
Thanks
Solved! Go to Solution.
Have you tried distinctcount
FSSC 22000 Compliance = CALCULATE(DISTINCTCOUNT('Suppliers Compliance'[FSSC 22000]),'Suppliers Compliance'[FSSC 22000]="C")
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.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
79 | |
73 | |
57 | |
36 | |
31 |
User | Count |
---|---|
91 | |
60 | |
59 | |
49 | |
45 |