Forum Discussion
Adding too measures together
Hello
I'm creating a chart showing actual expenditure to date and future forecast.
I've created two separate measures for:
Cumulative payments to date
7 Replies
- Greg_DecklerCommunity Champion
I believe that should just be:
Measure 3 = VAR __month = MONTH(MAX('Calendar'[Date])) RETURN CALCULATE(ALL([Cumulative payments to date]),MONTH('Calendar'[Date])=__month -1 + [Cumulative future forecasts])Something like that. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
Also See if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.
https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TITHW/m-p/434008- AnonymousNot applicable
Hi Greg
Thanks for your reply.
I've tried using the formula but I get the following error:
'A function 'CALCULATE' has been used in a True/False expression that is used as a table filter expression. This is not allowed.'
Any ideas what this might means?
Thanks!
- Greg_DecklerCommunity Champion
That means I seriously screwed up my syntax. I think this is what I was going for:
Measure 3 = VAR __month = MONTH(MAX('Calendar'[Date])) RETURN CALCULATE([Cumulative payments to date],FILTER(ALL(Calendar),MONTH('Calendar'[Date])=__month -1) + [Cumulative future forecasts])Been a long day.