Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Issue with quick measure for running total

I created a quick measure to show running total by month, comparing this year with last year. The measure works fine except that it is showing results into the future for current year. I need it to stop with current month and have tried filtering without getting the correct results. 

 

Here is the quick measure:

 

SPEND running total in Month =
CALCULATE(
SUM('TABLE1'[SPEND]),
FILTER(
CALCULATETABLE(
SUMMARIZE(
'TABLE1',
'TABLE1'[INV_DATE].[MonthNo],
'TABLE1'[INV_DATE].[Month]
),
ALLSELECTED('TABLE1')
),
ISONORAFTER(
'TABLE1'[INV_DATE].[MonthNo], MAX('TABLE1'[INV_DATE].[MonthNo]), DESC,
'TABLE1'[INV_DATE].[Month], MAX('TABLE1'[INV_DATE].[Month]), DESC
)
)
)

 

Any suggestions would be appreciated. Thanks.

 

1 Reply