HI,
I have a simple running total measure ;
but when I put this into a pivot table where the dates are groped by Month the accumulative pricess restarts at the end of each monht,
if it's not grouped it just carries on, is there a way to cause it to ignore the grouping. So for screen short below the first figure for March would be 64.
Richard.
I have a simple running total measure ;
Excel Formula:
RTM:=VAR mdate = MAX(Table2[Date])
VAR anser =
CALCULATE([tSales],FILTER(ALL(Table2[Date]),Table2[Date]<= mdate ) )
RETURN anser
but when I put this into a pivot table where the dates are groped by Month the accumulative pricess restarts at the end of each monht,
if it's not grouped it just carries on, is there a way to cause it to ignore the grouping. So for screen short below the first figure for March would be 64.
Richard.