Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

How to Add Exponential trendlines ?

How to add exponential Trendline in the Line Chart. Please anyone help.

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

 

Hope all is going well.

 

Currently, Power BI does not support adding exponential trendlines directly to visuals through Power BI Desktop, as you can in Excel.

 

You must create your own "trendline", which can be done by creating a DAX measure or using an R script visual.

 

At present, it is not possible to change the "algorithm" of the "automatic" trendline.

 

You can refer to this post for more related content, I hope this is helpful to you.

Solved: Trendlines in Power BI - Microsoft Fabric Community

 

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

amitchandak
Super User
Super 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])))

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors