Forum Discussion

elcro's avatar
elcro
Frequent Visitor
10 years ago
Solved

Cumulative total as continuous line on graph

I am trying to show the cumulative total of revenue as a continuous line on a graph, This is the formula I am using for my cumulative total:   Cumulative Revenue = CALCULATE(SUM('Invoice by Task an...
  • Anonymous's avatar
    Anonymous
    10 years ago

    You need to use the actual calendar table in your measure as well. 

     

    Cumulative Revenue = CALCULATE(SUM('Invoice by Task and Date'[Actual Revenue]), Filter(ALL(Calendar), Calendar[Date] <= MAX(Calendar[Date])))