Forum Discussion
Maeaex1
2 years agoFrequent Visitor
Rebased Performance Chart based on Daily Returns
Hi Community, I try to calculate a performance chart over time that starts at 100 (start date). I already created a measure that calculated the daily returns. Based on these returns the performan...
Anonymous
2 years agoNot applicable
Hi Maeaex1
You can refer to the following solution.
Sample data
1.I create a measure to display the daily return +1
Daily Return+1 = SUM('Table'[Daily Return])+1
2.Create a response measure
Resonse = PRODUCTX(FILTER(ALLSELECTED('Table'),[Date]<=MAX('Table'[Date])),[Daily Return+1])*100
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.