Sum of a row minus two smallest numbers

P

Philippe

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
 
D

David Billigmeier

Assume your values go from A1:Z1 -

=sum(A1:Z1)-SMALL(A1:Z1,1)-SMALL(A1:Z1,2)
 
R

Ron Rosenfeld

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
 
Top