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.
amitchandak
Super User
6 years agoAnonymous , Try measure like
countrows(filter(table, not(isblank(Table[Item])) && Table[Item] <> 0 ))
or
countrows(filter(table, coalesce(Table[Item],0) <> 0 ))