If there are blank cells in the data area of LINEST, how can I SKIP them but still get a result?

Natalie12138

New Member
Joined
Mar 28, 2023
Messages
6
Office Version
  1. 2021
Platform
  1. Windows
I am using "=@INDEX(LINEST(E$12:E$16,$C$12:$C$16,,TRUE),,2)" now , but I find if I delete a few data , it would turn out to be #VALUE; I want to know how can I get the results without deleting the whole row? Should I add the IF functions?
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
You can use the FILTER function to filter the range for blank cells...

Excel Formula:
=@INDEX(LINEST(FILTER(E$12:E$16,E$12:E$16<>""),FILTER($C$12:$C$16,C$12:C$16<>""),,TRUE),,2)

Hope this helps!
 
Upvote 0
Thanks for your help! But there is a problem that when I delete a data which means the cell turn to blank, the results doesn't change along with the data and go wrong,, if there are any ways to make this possible? Thanks a lot!!!
1201.xlsx
CDE
12101.68981.6801
13201.68141.6719
14251.6773
15401.66411.6549
16501.65351.6445
17701.6363#VALUE!
18851.6227#VALUE!
19R20.99785#VALUE!
20a-9.01E-04#VALUE!
21b1.6994#REF!
Dn
Cell Formulas
RangeFormula
D17:E18D17=$C17*D$20+D$21
D19:E19D19=INDEX(LINEST(D$12:D$16,$C$12:$C$16,,TRUE),3)
D20:E20D20=INDEX(LINEST(D$12:D$16,$C$12:$C$16,,TRUE),1)
D21D21=INDEX(LINEST(D$12:D$16,$C$12:$C$16,,TRUE),,2)
E21E21=@INDEX(LINEST(FILTER(E$12:E$16,E$12:E$16<>""),FILTER($C$12:$C$16,C$12:C$16<>""),,TRUE),,2)
Cells with Conditional Formatting
CellConditionCell FormatStop If True
AG1:AG4,D37:H37,D60:H60,I5:I1048576,D19:H19Cell Valuebetween 0.001 and 0.995textNO
 
Upvote 0
The formula is designed to return a #REF! error value when a cell is blank in either column. If this is not the desired behaviour, how do you want handle such situations? Do you want to exclude any row where a cell in either column is blank? If so, try...

Excel Formula:
=@LET(data,FILTER(C12:E16,(C12:C16<>"")*(E12:E16<>"")),INDEX(LINEST(INDEX(data,0,3),INDEX(data,0,1),,TRUE),,2))

However, if you're planning to copy the formula across, try the following instead...

Excel Formula:
=@LET(data,FILTER($C$12:E$16,($C$12:$C$16<>"")*(E$12:E$16<>"")),INDEX(LINEST(INDEX(data,0,COLUMNS(data)),INDEX(data,0,1),,TRUE),,2))

Hope this helps!
 
Upvote 0
Thank you for your help !!!! I have tried what you said and I got perfect results in calculating "a" and "b "(D20,E20.E21,E21) . but there a problem when I try this to calculate R2( Coefficients of determination in LINEST function) .If there are any ways to get the right results of R2?

This is what I tried in E19:
Excel Formula:
=@LET(data,FILTER($C$12:E$16,($C$12:$C$16<>"")*(E$12:E$16<>"")),INDEX(LINEST(INDEX(data,0,COLUMNS(data)),INDEX(data,0,1),,TRUE),,3))
HUGLY appreciated !!!
Thanks again!!!!
 
Upvote 0
I'm not a statistician, but I think this is probably what you want...

Excel Formula:
=LET(RowsToInclude,(C12:C16<>"")*(D12:D16<>"")*(E12:E16<>""),RangeY,FILTER(E12:E16,RowsToInclude),RangeX,FILTER(C12:D16,RowsToInclude),INDEX(LINEST(RangeY,RangeX,,TRUE),,3))

Or, to get rid of #N/A error values...

Excel Formula:
=LET(RowsToInclude,(C12:C16<>"")*(D12:D16<>"")*(E12:E16<>""),RangeY,FILTER(E12:E16,RowsToInclude),RangeX,FILTER(C12:D16,RowsToInclude),IFERROR(INDEX(LINEST(RangeY,RangeX,,TRUE),,3),""))

Is this what you want?
 
Upvote 0
You are soooo kind !! Thank u so much for your replies!! However , I got a SPILL error when I tried this two formulas, I guess maybe my English is too poor that I couldn't express what I want exactly , so I add a mini chart below .

As you know ,I used the LINEST to get R2 results at first ,and my goal is to keep R2 >0.995, so sometimes I need to delete some bad data, but when I delete a single cell, the results turn to VALUE error, and when I delete the whole row, the results are good. So I wonder if there are functions that could still get the results when I delete a single cell, which means the results change along with the deletion. (like I delete E53 in the chart, and I want E59,E60 still show the calculation results right after the deletion) Could you give some help, please?
1201.xlsx
CDE
53200.1696
54250.16640.1600
55400.15540.1482
56500.14640.1414
57700.13220.1275
58850.12100.1164
59R20.99932#VALUE!
60R2 (cal.)0.99976#VALUE!
Dn
Cell Formulas
RangeFormula
D53:D55,D56:E58D53=D13-D31
D59:E59D59=INDEX(LINEST(D$53:D$55,$C$53:$C$55,,TRUE),3)
D60:E60D60=INDEX(LINEST(D$48:D$58,$C$48:$C$58,,TRUE),3)
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D59:H59Cell Valuebetween 0.001 and 0.995textNO
AG1:AG4,D37:H37,D60:H60,I5:I1048576,D19:H19Cell Valuebetween 0.001 and 0.995textNO


Thanks again!!!!!
 
Upvote 0
Just to be clear, in your example, cell E53 is blank. In this case, I'm assuming that you want to exclude Row 53 (cell C53 and E53) from the calculation, correct?

Also, can you please provide the actual results that you expect for cell E59 and E60?
 
Upvote 0
Thank you for your time ! Yes, I want to exclude Row 53 without deleting the row when I turn E53 to blank.
The original data of E53 is 0.1634,after I delete the cell, the expected results are : E59: 1.00000 ; E60 : 0.99957 ,which are the results after I delete Row53(which means C54 turn to C53, D54 turn to D53...)

Thanks again!!!!!!!!
 
Upvote 0
In that case, try...

Excel Formula:
=LET(data,FILTER($C$53:$E$55,($C$53:$C$55<>"")*($E$53:$E$55<>"")),INDEX(LINEST(INDEX(data,0,3),INDEX(data,0,1),,TRUE),3,1))

And the same thing for your other one, just change the ranges accordingly.

Hope this helps!
 
Upvote 0
Solution

Forum statistics

Threads
1,215,110
Messages
6,123,138
Members
449,098
Latest member
Doanvanhieu

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