SUMIF SUBTOTAL OR SUMPRODUCT?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to sum a row ignoring the highest (2) and lowest (2) values BUT some
of the cells have a #DIV0!
All I can get using sum and sub total and sumprod is #DIV0!

thanks
 
Why not fix the cells that return DIV error first

=IF(A1=0,"",B1/A1)

otherwise you need something like

=SUM(IF(ISNUMBER(A1:J1),A1:J1),-SMALL(IF(ISNUMBER(A1:J1),A1:J1),{1;2}),-LARG
E(IF(ISNUMBER(A1:J1),A1:J1),{1;2}))

entered with ctrl + shift & enter
 
Hi,

I have the following worksheet and need to have the totals of the columns
equal the total that they are right now even when both column's values
change. Here's what I mean:

DONE REMAINING

000 136
000 37
000 25
000 46
000 46

Above is how the numbers are originally, and here's what I would like them
to do after inputting just one number (Done).

DONE REMAINING

012 124
010 027
018 007
030 016
015 031

Can someone help me with this function please?

Thanks alot!
 

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

Back
Top