LINEST - Polynomial equation

pandan

New Member
Joined
Jul 18, 2005
Messages
6
Hello, I have a problem with the LINEST function and even when I try given examples it doesn't work.

X..............Y
100........-0,5
400........-0,7
700........-0,3
1000........0,1
1100........0,2
1200........0,2

There are my X and Y's. What I want is to get the constants for an third degree equation in four cells. I can do a graph and then a trendline to get the equation: y = -3,07848796E-09x3 + 6,81164335E-06x2 - 3,38519903E-03x - 2,28863584E-01

When I change the values in X and Y the equation changes and since there ain't possible to link the equation in the chart to a cell I cant use the trendline.

I've looked around and found out about the LINEST function. The strange part is that it won't work for me.

The formulas I typed:
=INDEX(LINEST(B2:B7;A2:A7^{1;2;3});1)
=INDEX(LINEST(B2:B7;A2:A7^{1;2;3});1;2)
=INDEX(LINEST(B2:B7;A2:A7^{1;2;3});1;3)
=INDEX(LINEST(B2:B7;A2:A7^{1;2;3});1;4)

The only result I get is #VALUE!.

If someone could help me I would be really grateful. You can either post here or send me an PM or an e-mail with, for example an Excel file were you show me how to do.

English or Swedish is ok in PM or mail.

Regards!
Niklas
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.


D2:G6 is obtained by entering

=LINEST(B2:B7,A2:A7^{1,2,3},TRUE,TRUE)

in D2 then selecting D2:G6 and confirming the formula with control+shift+enter.

With INDEX()...

J2:

=INDEX(LINEST($B$2:$B$7,$A$2:$A$7^{1,2,3},TRUE,TRUE),1,ROW()-ROW($J$2)+1)

which you must confirm with control+shift+enter then copy down.

Note that the list separator on my American system is comma, not semi-colon.
 
Upvote 0
I really don't know what the problem is but when I do as you just did I still just get #VALUE! in D2:G6

Do I need some special add-in or what is the problem? Maybe you could send me an excel file by mail?


EDIT: I now looked at "Evaluate formula" and I saw this:

LINEST($B$2:$B$7;{100;160000;343000000;#N/A;#N/A;#N/A};TRUE;TRUE)

100 is A2^1
160000 is A3^2
343000000 is A4^3
then it become #N/A and maybe it's because I don't have any ^4, ^5 and ^6...

Have I some settings that are wrong or why wont it work?
 
Upvote 0
pandan said:
I really don't know what the problem is but when I do as you just did I still just get #VALUE! in D2:G6

Do I need some special add-in or what is the problem? Maybe you could send me an excel file by mail?

You don't need a special add-in.
For an Excel file, I'll need your e-mail via PM.

Did you apply CONTROL+SHIFT+ENTER properly?
 
Upvote 0
Aladin Akyurek said:
pandan said:
I really don't know what the problem is but when I do as you just did I still just get #VALUE! in D2:G6

Do I need some special add-in or what is the problem? Maybe you could send me an excel file by mail?

You don't need a special add-in.
For an Excel file, I'll need your e-mail via PM.

Did you apply CONTROL+SHIFT+ENTER properly?

Yes I did.

Check my last post, now edited.
 
Upvote 0
pandan said:
Aladin Akyurek said:
pandan said:
I really don't know what the problem is but when I do as you just did I still just get #VALUE! in D2:G6

Do I need some special add-in or what is the problem? Maybe you could send me an excel file by mail?

You don't need a special add-in.
For an Excel file, I'll need your e-mail via PM.

Did you apply CONTROL+SHIFT+ENTER properly?

Yes I did.

Check my last post, now edited.

Would you try...

{=LINEST(B2:B7;A2:A7^{1\2\3};TRUE;TRUE)}

for \ might be the separator in a constant array on your system?
 
Upvote 0

Forum statistics

Threads
1,221,831
Messages
6,162,246
Members
451,756
Latest member
tommyw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top