Forum Discussion
Anonymous
2 years agoNot applicable
How to count all duplicate and single values
Hi, I would like to count the number of employee by department, and I use this formula Attrition HC 2 = CALCULATE( COUNTROWS(except(values(Terminate[ID]),VALUES(Zero[Employee ID]))),Reasons_Loo...
- 2 years ago
I see so you want to exclude Zero values.
With that in mind try this:Measure = CALCULATE(COUNT('Table (2)'[Employee ID]),'Table (2)'[Status]="Voluntary",EXCEPT(VALUES('Table (2)'[Employee ID]),VALUES('Zero'[EID])))
Test: (no except)With:
ValtteriN
Community Champion
2 years agoI see so you want to exclude Zero values.
With that in mind try this:
Measure = CALCULATE(COUNT('Table (2)'[Employee ID]),'Table (2)'[Status]="Voluntary",EXCEPT(VALUES('Table (2)'[Employee ID]),VALUES('Zero'[EID])))
Test: (no except)
With:
Anonymous
2 years agoNot applicable
It works!
Thank you so muchhh.