Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I have a matrix with a generic rows of distinct values, in the example I have used colors and then the field created month for the coloumns. I am trying to show in a matrix when there is an empty field I would like it to show "0" ,as its a count instead of nothing.
I have tried :
= COALESCE(COUNT([Field1]), 0)
I have attempted all sugestions but none have worked. Ill leave this thread open if I find a solution I will post about it.
Hey @ReubenS
you can try this one:
=
Var _TOTAL= COUNT([Field1])
RETURN IF(_TOTAL = blank(),0,_TOTAL)
Cheers, LQ
Hi @ReubenS
try this measure,
Measure=if(calculate(count(Field))=Blank(),0,calculate(count(Field))
Thanks and Regards
Thennarasu
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.