top ten

  • Thread starter Thread starter Harold
  • Start date Start date
H

Harold

Hi,
I have a spreadsheet which has 3 rows of 40 entrys, Is there
formula which will pick the top 10 entrys out of it

thankyo
 
Hi
you may have a look at LARGE.
e.g.
=LARGE(A1:C20,2)
to get the second highest value
 
Assuming data in A1:AJ3, in

A5: =LARGE(A1:AJ3,ROW(A1))

and copy down to A14

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
If you want to add them to gether, you could use:

=MAX(A1:C40)+LARGE(A1:C40,2)+LARGE(A1:C40,3)+LARGE(A1:C40,4)+LARGE(A1:C40,5)+LARGE(A1:C40,6)+LARGE(A1:C40,7)+LARGE(A1:C40,8)+LARGE(A1:C40,9)+LARGE(A1:C40,10)

Assuming your data is in A1:C40.

I don't know any other formula way, but then again, I'm not all tha
bright...
 
For the SUM of the largest 10 integers in A1:C40, you can use the
following formula:

=SUMPRODUCT(LARGE(A1:C40,ROW(INDIRECT("1:10"))))


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
Thankyou using the "large" on the down the list gave me a top ten ... I
said it before and I say it again, you guys are legends
 
or more simply

=SUMPRODUCT(LARGE(A1:C40,ROW(1:10)))

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

Chip Pearson said:
For the SUM of the largest 10 integers in A1:C40, you can use the
following formula:

=SUMPRODUCT(LARGE(A1:C40,ROW(INDIRECT("1:10"))))


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
But that could cause problems if a row is inserted/deleted in 1:10.



Bob said:
or more simply

=SUMPRODUCT(LARGE(A1:C40,ROW(1:10)))

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 

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