Forum Discussion
vonckk
5 years agoFrequent Visitor
Creating Cumulative Measure referencing another meausre
Hello, I could really use some help with a visual I'm working on. I'm looking to show the actual spend, forecasted spend, monthly delta, and the cumulative delta throughout the year. The chart b...
- Anonymous5 years ago
Hi vonckk ,
Try using SUMX() function.
Measure = ABS(SUM('Table'[value1])-SUM('Table'[value2])) Measure 2 = SUMX(FILTER(ALLSELECTED('Table'),'Table'[date]<=MAX('Table'[date])),[Measure])Best Regards,
Jay
Anonymous
5 years agoNot applicable
Hi vonckk ,
Try using SUMX() function.
Measure = ABS(SUM('Table'[value1])-SUM('Table'[value2]))
Measure 2 = SUMX(FILTER(ALLSELECTED('Table'),'Table'[date]<=MAX('Table'[date])),[Measure])
Best Regards,
Jay