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
Hi everyone. I've got this table:
the only column is the Month one, the others are measures. The last column in the table, "success/failure", is a measure calculated as
var perc = DIVIDE(
[Sales],
[Budget],
BLANK())
RETURN IF(perc>1, 1, 0),BLANK())
How can I count the number of months in which succes/failure is equal to 1? The result would be 5.
Thank you.
Solved! Go to Solution.
@mtrevisiol , Create measure like
sumx(values(Table[Mese]), [success/failure])
If you want to have a formula of [success/failure] in that place make sure to use calculate,
calculate(<formula>)
@mtrevisiol , Create measure like
sumx(values(Table[Mese]), [success/failure])
If you want to have a formula of [success/failure] in that place make sure to use calculate,
calculate(<formula>)
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!