Forum Discussion
Anonymous
6 years agoNot applicable
Exclude Zero and blank from Count
My Count Item formula excluding blank but not zero. I want to exclude zero from ITEM COUNT.
v-jingzhang
Community Support
6 years agoHi Anonymous , try measure like this:
Measure = CALCULATE(COUNTROWS('Table'),'Table'[Item]<>0 && 'Table'[Item]<>BLANK())
Or
Measure = CALCULATE(COUNTROWS('Table'),'Table'[Item]<>"0" && 'Table'[Item]<>BLANK() && 'Table'[Item]<>"")
Perhaps need to modify the measure according to the column’s data type.