Forum Discussion
AllanBerces
Post Prodigy
2 years agoCount Blank and Zero
Hi Good day, Can pls help me on how to total the blank and zero base from active column. from sample below total blank and zero = 8. Thank you
- 2 years ago
pls try this
or
amitchandak
Super User
2 years agoAllanBerces , Try below measures
Blank count
Countrows(filter(Table, Isblank([Job%]) ) )
Zero count
Countrows(filter(Table, not(Isblank([Job%]) ) && [Job%] = 0 ))