Returns largest number

  • Thread starter Thread starter Linda Freeman
  • Start date Start date
L

Linda Freeman

I have numbers in Columns A thru L, Row 2. I would like
to extract the largest number and return it to Cell M2.
 
If you might later want the second largest number

=Large(A2:L2,1) for the largest
in general

=Large(A2:L2,n) where n would be the nth largest you wanted.

See help for MIN and SMALL as well
 
Back
Top