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 below except "CLOSED"
The goal is to have the last status for each running cases (that are not close) in order to show what is the workload
Here is the desired result: 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: Transaction tables after 4 days for each 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])))
I'm having difficulties to formulaite the correct DAX syntax in order to have the desired result as below.
I would greatly appreciate your help on this matter


