Forum Discussion
Anonymous
4 years agoNot applicable
Chart Context and Normalization
Hello, I have run up against an issue Youtube/Google University has not helped me solve yet. Many have gotten me close, but none have given the final desired result. I have a chart with multipl...
- 4 years ago
Hi, Anonymous
Try this:Measure = var _firstValue= CALCULATE( SUM('Table'[Sales]),ALL('Table'), 'Table'[Date]=MINX(ALL('Table'),[Date]) ) var _currentSale=MAX('Table'[Sales]) return DIVIDE(_currentSale,_firstValue)-1Result:
Please refer to the attachment below for details.
Hope this helps.
Best Regards,
Community Support Team _ Zeon ZhengIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-angzheng-msft
4 years agoCommunity Support
Hi, Anonymous
Try this:
Measure =
var _firstValue=
CALCULATE(
SUM('Table'[Sales]),ALL('Table'),
'Table'[Date]=MINX(ALL('Table'),[Date])
)
var _currentSale=MAX('Table'[Sales])
return DIVIDE(_currentSale,_firstValue)-1
Result:
Please refer to the attachment below for details.
Hope this helps.
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.