Hello,
I'm new in DAX
I'm working on a IT Service Desk and I would like to have a dashboard that show me the "Running Cases" over the time.
The cases have differents status like: AWAITING - IN PROGRESS - PLANNED - CLOSED.
Cases are considering as "Running Cases" when they get status above except "CLOSED"
The aim is to have the last status for each running cases (that are not closed) in order to show what is the workload
Here is the desired result:
How to arrive to this result and what are the full data ? Here is the transaction table over 4 days and for 9 cases
I tried with these and others DAX syntaxes but I didn't get the expected result.
=COUNTROWS(FILTER(Table1;MAX(Table1[Date])))
=CALCULATE(COUNTROWS(Table1);FILTER(ALL(Table1);Table1[Date]<=MAX(Table1[Date])))
The measure should be able to count all running cases that are less or equal to the current date of the evaluation context
I'm having difficulties to formulate the correct DAX syntax in order to have the desired result as above.
I would greatly appreciate your help on this matter.
Tom