Add best 3 of 4 numbers

G

GE

Looking to add the best 3 of 4 numbers in a spreadsheet. Can not seem to
figure out when all 4 of the numbers are the same.

GE
 
B

Bernie Deitrick

GE,

Either Frank's

=SUM(LARGE(A1:A4,{1,2,3}))

or my

=SUM(A1:A4) - MIN(A1:A4)

will work in that case.

HTH,
Bernie
MS Excel MVP
 
Top