Adding more than one maximum

  • Thread starter Thread starter stevengepp
  • Start date Start date
S

stevengepp

Is there a way of taking a list of five numbers and adding together only the
highest 3 (ignoring or dropping the two lowest marks)? E.g. if the numbers
were 2,5,7,4,5, the numbers 5,7,5 would be added, 2 and 4 being ignored.
 
One way:
In say, B1: =SUMPRODUCT(LARGE(A1:A5,ROW(1:3)))
where source data is in A1:A5
 
Thanks a lot; this worked really well across several multi-linked spreadsheets.
 

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