Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Cumulative counts on line/bar graphs

Hi all,    I have a measure which I use to count cumulative registrations - it's simple and it has mostly worked: Cumulative = CALCULATE (     COUNT ( 'Team'[DateRegistered]),     FILTER (    ...
  • negi007's avatar
    3 years ago

    Anonymous You will have do the calc at the year to have running total for each year. your measaure could be like below

    Vol running total in Year =
    CALCULATE(
        SUM('Table'[Vol]),
        FILTER(
            ALLSELECTED('Table'[Date].[Year]),
            ISONORAFTER('Table'[Date].[Year], MAX('Table'[Date].[Year]), DESC)
        )
    )
     
     here is the expected output