Trend Line Constants

G

Guest

I have created and X Y Scatter chart and placed an Exponential Trend Line on
it with a good R2 result. I have added the equation to be shown on the chart.

How can I put the Constant values of this equation into separate cells
within the worksheet.

i.e. equation is Y = bE (cX)

I want to put the value of "b" and "c" into separate cells. Can anyone help?
 
B

Bill Martin

Ken said:
I have created and X Y Scatter chart and placed an Exponential Trend Line on
it with a good R2 result. I have added the equation to be shown on the chart.

How can I put the Constant values of this equation into separate cells
within the worksheet.

i.e. equation is Y = bE (cX)

I want to put the value of "b" and "c" into separate cells. Can anyone help?
------------------

I don't believe you can capture the constants simply from the graph. However,
ask the Excel help system about the LOGEST( ) function which will provide them.

Bill
 
G

Guest

Hi,

Assuming that your x-values are in A2:A21 and y-values are in B2:B21, use
the following formulas to calculate b and c.

For b, =EXP(INTERCEPT(LN(B2:B21),A2:A21))
For c, =SLOPE(LN(B2:B21),(A2:A21))

Regards,
B. R. Ramachandran
 
G

Guest

B.R. Ramachandran

Thanks for your help on this one. Also I need to get a Polynomial constants
for a 2 degree equation. Can you help? e.g. Z = aX(2) + bX + c.
I need a, b and c
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top