Sum of a row minus two smallest numbers

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

Guest

I have a spreadsheet with many rows and many column. For each row, I want to
calculate the sum of all values on this row minus the TWO smallest numbers.

Any idea how to do that?

Cheers,

Philippe
 
Assume your values go from A1:Z1 -

=sum(A1:Z1)-SMALL(A1:Z1,1)-SMALL(A1:Z1,2)
 
I have a spreadsheet with many rows and many column. For each row, I want to
calculate the sum of all values on this row minus the TWO smallest numbers.

Any idea how to do that?

Cheers,

Philippe


=SUM(B2:Z2,-SMALL(B2:Z2,{1,2}))


--ron
 

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