Forum Discussion
Anonymous
5 years agoNot applicable
Cummulative Count
Hi Power BI Community! I want to show the backlog of open to closed cases. Now the backlog just cummulative the open cases. I want the cummulative open cases - closed cases This...
- 5 years ago
Anonymous
Make sure you have inserted the Dates[Dates] in the X- Axis. try this calculation:Backlog = CALCULATE ( [Count open] - [count closed], FILTER ( ALLSELECTED ( 'Dates'[Date]), 'Dates'[Date] <= MAX ( 'Dates'[Date] ) ) )
Fowmy
Super User
5 years agoAnonymous
Make sure you have inserted the Dates[Dates] in the X- Axis. try this calculation:
Backlog =
CALCULATE (
[Count open] - [count closed],
FILTER (
ALLSELECTED ( 'Dates'[Date]),
'Dates'[Date] <= MAX ( 'Dates'[Date] )
)
)- Anonymous5 years agoNot applicable
Fowmy Sometimes the solution is too easy! I had a different x axis 😶
Thanks for your help