Forum Discussion
Anonymous
2 years agoNot applicable
How to Add Exponential trendlines ?
How to add exponential Trendline in the Line Chart. Please anyone help.
amitchandak
2 years agoSuper User
Anonymous , You have create you own line, You can create Exp function
https://learn.microsoft.com/en-us/dax/exp-function-dax
You also use cumulative calculation, before exp, if needed
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(all('Date'),'Date'[date] <=max('Date'[date])))
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected(date),date[date] <=max(date[Date])))