picking largest number

  • Thread starter Thread starter dnmusic
  • Start date Start date
D

dnmusic

if i have a row or column of numbers, what formula do i use to pick out the
largest numer... i.e. 10, 14, 6, 28, 59, 37... i need to pull out 59
 
dnmusic said:
if i have a row or column of numbers, what formula do i use to pick out the
largest numer... i.e. 10, 14, 6, 28, 59, 37... i need to pull out 59


Look at MAX and LARGE in the help file.
 
If data is real numbers, then just normal Enter, eg in B1: =MAX(A1:A10)
If data is text numbers or a mix of text/real numbers,
then array Enter* in B1: =MAX(A1:A10+0)
*press CTRL+SHIFT+ENTER to confirm the formula
Any good? hit the YES below
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:27,000 Files:200 Subscribers:70
xdemechanik
 
You can use,
=Large(your range of number here, 1)
replace your range of number here with your actual range (row and/or column)
You can check the large function under help
 
Back
Top