Forum Discussion
Adding too measures together
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.
Thanks Greg, now i get this error:
A function 'FILTER' has been used in a True/False expression that is used as a table filter expression. This is not allowed.
Any ideas?
Thanks for your help so far!
- Greg_Deckler7 years agoCommunity Champion
Shoot, paren in the wrong spot! Syntax...
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]This is what happens when I don't actually test my DAX code in Power BI and try to wing it.
- Anonymous7 years agoNot applicable
Thanks again for your reply.
Unfortunately that measure basically re-creates a line the same as the existing measure for Cumulative Forecasts.
I was hoping to get a line that starts from July thats show cumulative payments to date. For example, as at 31 December, the total cumulative figure for the first 6 months would be $1,000,000. The line would then change to Cumulative Forecasts where the January figure would be the $1,000,000 paid to date plus January forecasts. This would then continue on until 30 June.
- Greg_Deckler7 years agoCommunity Champion
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