Forum Discussion
traffic light summary
- 1 year ago
Hi Anonymous
If I understood you correctly, then a simple distinct count will do the job.
You can even show the qty of every status's activities on the slicer itself:The pbix with the example is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Hi Anonymous
If I understood you correctly, then a simple distinct count will do the job.
You can even show the qty of every status's activities on the slicer itself:
The pbix with the example is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Thanks, is it possible to count the count for each of the status?
- Ritaf19831 year agoSuper User
Hi Anonymous
Yes of course, but you don't need it if you are using slicers / filters/visuals with filter context .
Count of specific for specific status dax formula is :In_progress_qty = CALCULATE(DISTINCTCOUNT('Table'[Category]), 'Table'[status]= "In progress")
the same formula for every status:
the updated pbix is attachedIf this post helps, then please consider Accepting it as the solution to help the other members find it more quickly