Forum Discussion
Cumulative total for my data model
- Anonymous5 years ago
Hi Anonymous ,
Please refer the formula.
Measure = CALCULATE(SUM('Table'[value]),FILTER(ALLSELECTED('Table'),'Table'[index]<=MAX('Table'[index])))Result would be shown as below.
Best Regards,
Jay
Anonymous , Try
Create a new column
Date = "01-" & [Month] & "-" [year] //Change data type to date
and then measure
Cumm ACTUAL+FORECAST = CALCULATE(SUM(Table[Value]),filter(allselected(Table),Table[date] <=max(Table[Date]) && Table[Type] = "ACTUAL+FORECAST"))
Cumm BUDGET = CALCULATE(SUM(Table[Value]),filter(allselected(Table),Table[date] <=max(Table[Date]) && Table[Type] = "BUDGET"))
amitchandak the months on x axis are from value month column.
So from each month we have 12 value months, index represents value month in fiscal numbering.
so I need for every month there should be a cumulative total till that value month
eg., for month apr chart 2 shows value month apr
for month may chart 2 shows value month apr and apr+may
for month jun chart 2 shows value month apr , apr+may and apr+may+jun
I you get this data model please help me
- amitchandak5 years ago
Super User
Anonymous , That is like YTD, Better create a date table and use YTD
YTD = CALCULATE(SUM(Table[Value]),DATESYTD('Date'[Date],"3/31"), filter(Table, Table[Type] = "ACTUAL+FORECAST")) //end of year is march