Summation of 3 biggest numbers...

  • Thread starter Thread starter lau0001
  • Start date Start date
L

lau0001

hi all, is there any quick method to add up 3 biggest numbers in a se
of number? e.g.
I have the following data in a row:

100 20 90 30

And I want to add up 3 biggest numbers, i.e.
100 + 90 + 30 = 220

Thanks
 
=SUMPRODUCT(LARGE(A1:Z1,{1,2,3}))

--
Regards
Ken....................... Microsoft MVP - Excel
Sys Spec - Win XP Pro / XL 97/00/02/03

------------------------------­------------------------------­----------------
It's easier to beg forgiveness than ask permission :-)
------------------------------­------------------------------­----------------
 
=SUMPRODUCT(LARGE(A1:Z1,{1,2,3}))

Hi Ken

Thanks for this - this is really useful stuff.

Been having a look into this and am now wondering why you chose to use
SUMPRODUCT instead of SUM?

I've tried SUM and get the same results. Or is that by chance?

Thanks

Noz
 
Nope, my bad - I just get so used to using SUMPRODUCT that I'll occasionally
miss the simpler option :-(

Regards
Ken................
 

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