Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

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...
  • Fowmy's avatar
    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] )
        )
    )