Forum Discussion
Anonymous
6 years agoNot applicable
YTD Case count with multiple statuses (Values)
Hello, I am stuglling with the dax query i am using the following query to calculate the YTD cases with one filter and it is working fine, now the challange is i need to add in this count specifi...
- 6 years ago
Cases YTD = CALCULATE( COUNT( incidents[incidentid] ),
ALL( incidents[createdon] ),
YEAR( incidents[createdon] ) = YEAR( NOW() ),
incidents[statuscode] IN { 5,6 }
)
lbendlin
6 years agoSuper User
Cases YTD = CALCULATE( COUNT( incidents[incidentid] ),
ALL( incidents[createdon] ),
YEAR( incidents[createdon] ) = YEAR( NOW() ),
incidents[statuscode] IN { 5,6 }
)
Anonymous
6 years agoNot applicable
Thanks it works perfect 🙂