A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Find the 5 max values in a column?



 
 
Thread Tools Display Modes
  #1  
Old May 11th, 2004, 06:15 PM
external usenet poster
 
Posts: n/a
Default Find the 5 max values in a column?

Any one know of a way to:

On a column: Formated as numeric

Return the Max(thats the easy part and the "max" function
will do that), and the next 4 values (ie max, the next
max if Max1 were removed from the search - etc)?
  #2  
Old May 11th, 2004, 06:22 PM
Dave R.
external usenet poster
 
Posts: n/a
Default Find the 5 max values in a column?

You want the LARGE function, LARGE(A1:A100,1) will return the largest,
LARGE(A1:A100,2) will return the 2nd largest, etc.

You can do this in 1 cell by joining the formulas with & and &"-"&

or you could use 5 cells such as B1:B5 with

=LARGE(A$1:A$100,ROW())

entered in each.



wrote in message
...
Any one know of a way to:

On a column: Formated as numeric

Return the Max(thats the easy part and the "max" function
will do that), and the next 4 values (ie max, the next
max if Max1 were removed from the search - etc)?



  #3  
Old May 11th, 2004, 06:41 PM
external usenet poster
 
Posts: n/a
Default Find the 5 max values in a column?

Thanks for the info, !!!


-----Original Message-----
You want the LARGE function, LARGE(A1:A100,1) will

return the largest,
LARGE(A1:A100,2) will return the 2nd largest, etc.

You can do this in 1 cell by joining the formulas with &

and &"-"&

or you could use 5 cells such as B1:B5 with

=LARGE(A$1:A$100,ROW())

entered in each.



wrote in message
...
Any one know of a way to:

On a column: Formated as numeric

Return the Max(thats the easy part and the "max"

function
will do that), and the next 4 values (ie max, the next
max if Max1 were removed from the search - etc)?



.

  #4  
Old May 11th, 2004, 07:15 PM
Aladin Akyurek
external usenet poster
 
Posts: n/a
Default Find the 5 max values in a column?

Let A2:A100 house the data of interest.

In B2 enter & copy down:

=LARGE($A$2:$B$100,ROW()-ROW($B$2)+1)

Note that the ROW($B$2) bit anchors the formula to the first cell it is
entered. This makes
the formula robust against inserting rows before the formula cell.

wrote in message
...
Any one know of a way to:

On a column: Formated as numeric

Return the Max(thats the easy part and the "max" function
will do that), and the next 4 values (ie max, the next
max if Max1 were removed from the search - etc)?



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 05:57 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.