Member Login
Who's Online
We have 30 guests and 4 members onlineOur Services
Total Downloads
| Making Excel Read Graphical and Tabular Data |
|
When you add a trendline to a chart, Excel provides an option to display the trendline equation in the chart. This tip describes how to create formulas that generate the trendline coefficients. You can then use these formulas to calculate predicted y values for give values of x. 1) First the Easy Way
2) Now the More Complex 'Dynamic' Way
Linear Trendline Equation: y = m * x + b m: =SLOPE(C8:H8,C5:H5) b: =INTERCEPT(C8:H8,C5:H5) Logarithmic Trendline Equation: y = (c * LN(x)) + b c: =INDEX(LINEST(C8:H8,LN(C5:H5)),1) b: =INDEX(LINEST(C8:H8,LN(C5:H5)),1,2) Power Trendline Equation: y=c*x^b c: =EXP(INDEX(LINEST(LN(C8:H8),LN(C5:H5),,),1,2)) b: =INDEX(LINEST(LN(C8:H8),LN(C5:H5),,),1) Exponential Trendline Equation: y = c *e ^(b * x) c: =EC5:H5P(INDEX(LINEST(LN(C8:H8),C5:H5),1,2)) b: =INDEX(LINEST(LN(C8:H8),C5:H5),1)
2nd Order Polynomial Trendline
3rd Order Polynomial Trendline In the Forum Read MajorMagee's comments and example spreadsheet. Some Sample Calculations on the Site
|




