Deladier
Board Regular
- Joined
- May 4, 2005
- Messages
- 127
Hi experts, I have some data in ranges: C2:C7,B2:B7, values are:
_B________C___
100 100,41
200 200,842
300 301,274
400 401,706
500 502,138
600 602,57
and resulting Trendline ecuation in the graph is the following:
y = 6.50521E-19x3 - 6.39246E-16x2 + 1.00432E+00x - 2.20000E-02
with R2 = 1,00000E+00
I usually obtain directly the coefficients (6.50521E-19, -6.39246E-16, 1.00432E+00, -2.20000E-02) using something
like this:
=INDEX(LINEST(C2:C7,B2:B7^{1,2,3}),1)
=INDEX(LINEST(C2:C7,B2:B7^{1,2,3}),2)
=INDEX(LINEST(C2:C7,B2:B7^{1,2,3}),3)
=INDEX(LINEST(C2:C7,B2:B7^{1,2,3}),4)
(each value in a different cell)
but I realized that numbers with an exponent so small (E-16, E-19 for this case) the result coefficient is zero with the formula.
Is there some way to see the correct small coefficient numbers (6.50521E-19 and -6.39246E-16 for this case), just like the graph shows?
Thanks in advance.
_B________C___
100 100,41
200 200,842
300 301,274
400 401,706
500 502,138
600 602,57
and resulting Trendline ecuation in the graph is the following:
y = 6.50521E-19x3 - 6.39246E-16x2 + 1.00432E+00x - 2.20000E-02
with R2 = 1,00000E+00
I usually obtain directly the coefficients (6.50521E-19, -6.39246E-16, 1.00432E+00, -2.20000E-02) using something
like this:
=INDEX(LINEST(C2:C7,B2:B7^{1,2,3}),1)
=INDEX(LINEST(C2:C7,B2:B7^{1,2,3}),2)
=INDEX(LINEST(C2:C7,B2:B7^{1,2,3}),3)
=INDEX(LINEST(C2:C7,B2:B7^{1,2,3}),4)
(each value in a different cell)
but I realized that numbers with an exponent so small (E-16, E-19 for this case) the result coefficient is zero with the formula.
Is there some way to see the correct small coefficient numbers (6.50521E-19 and -6.39246E-16 for this case), just like the graph shows?
Thanks in advance.