Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello teams,
I'd like to solve this problem. At belove, an example of my data:
The column CUT_OFF is calculated that: if(KPI_1>5;1;0).
Now my desire is to calculate the percentage value of how many suppliers exceed the threshold compared to the total considering only the separate suppliers. In this case it is equivalent to 3/4 = 66.6%
Solved! Go to Solution.
Hi @Anonymous,
New below measure.
% =
CALCULATE (
DISTINCTCOUNT ( Test1[SUPPLIER] ),
FILTER ( ALLEXCEPT ( Test1, Test1[YEAR] ), Test1[CUT_OFF] = 1 )
)
/ CALCULATE (
DISTINCTCOUNT ( Test1[SUPPLIER] ),
ALLEXCEPT ( Test1, Test1[YEAR] )
)
Best regards,
Yuliana Gu
Hi @Anonymous,
New below measure.
% =
CALCULATE (
DISTINCTCOUNT ( Test1[SUPPLIER] ),
FILTER ( ALLEXCEPT ( Test1, Test1[YEAR] ), Test1[CUT_OFF] = 1 )
)
/ CALCULATE (
DISTINCTCOUNT ( Test1[SUPPLIER] ),
ALLEXCEPT ( Test1, Test1[YEAR] )
)
Best regards,
Yuliana Gu
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!