what function do I use for excel to choose the 2nd highest number

E

ematboy

I want excel to determine the 2nd and 3rd highest numbers from a list of
numbers. What function do I use?
 
R

Roger Govier

Hi

=LARGE($A$1:$A$100,ROW(A1))
will find the largest number in the range A1:A100
as you copy down, ROW(A1) will become ROW(A2). and find the 2nd largest
, then the 3rd largest etc.
 
Top