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
Ashish_Mathur
Super User
2 years agoHi,
Assuming Job % is a measure that you have written, write this measure
Measure = countrows(filter(values(Data[Active]),[Job %]==0||[Job %]==blank()))
AllanBerces
Post Prodigy
2 years agoHi amitchandak Ashish_Mathur thank you for your reply, for clarification the active column also have IN ACTIVE value, and for the Job % is from calculated column.
Thank you
- Ashish_Mathur2 years ago
Super User
Hi,
Does this measure work?
Measure = countrows(filter(values(Data[Active]),[Active]="Active"&&([Job %]==0||[Job %]==blank()))