Forum Discussion

HitcH's avatar
HitcH
Helper II
1 year ago
Solved

Cumulative turnover

Hello everyone I know that this topic has been discussed many times but I couldn't solve it. This is my database:   I want to see cumulative turnover for current month - current year. I tr...
  • MNedix's avatar
    1 year ago

    Heya,

     

    Could you please try this:

    Cumulative Turnover (forum) = 
    CALCULATE(
    SUM(Table[Turnover]),FILTER(ALLSELECTED(Table),Table[Date]<=MAX(Table[Date])))

     

    If this solved your problem then please mark it as the solution so others can see it.

     

    Best,