Mike Middleton said:
Cody -
Please post an XY data set that exhibits this problem.
- Mike Middleton
http://www.DecisionToolworks.com
Decision Analysis Add-ins for Excel
I strongly recommend using LINEST rather than trendlines. For one
thing, the fitting coefficients are in accessible cells, rather than
just a text box on a graph.
BTW, if you don't know this trick, you can fit any degree polynomial
using LINEST. That's because each power of x is othorgonal to the
others.
The basic form is
=LINEST([yarray],[xarray]^{1,2,3,4},true,true) e.g., for a 4th-order
poly. You need to enter it as an array formula, and to get all the
coefficients (plus R^2, residuals, and more), apply it to a 5colx4row
region. The number of columns is the polynomial degree plus one.