Formula

  • Thread starter Thread starter Scott
  • Start date Start date
S

Scott

From someone who has little math or computer skills.....

I have a range of six numbers - from those six, I need to
find the 4 largest and then get a total. What formula
will work?
 
Hi Scott:

Try:

=SUM(LARGE(A1:A100,{1,2,3,4}))
Entered as an array by pressing and holding down Ctrl + Shift and then
pressing Enter


--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
 
-----Original Message-----
From someone who has little math or computer skills.....

I have a range of six numbers - from those six, I need to
find the 4 largest and then get a total. What formula
will work?
.
assuming the numbers are in cells a1 to a6 i would sum all
less the 5th and 6th largest;

=SUM(A1:A6)-LARGE(A1:A6,5)-LARGE(A1:A6,6)
 
Thanks JE and Seasons Greetings!

Have you an index for your web site?

--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
 
Hi JE!

Thanks. One for my list of references.

I'm busy on the User Guide for Ron's Google Search 6

He keeps us busy; slave driver!!

--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
 

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