How do I return the highest value in a range of cells

D

Domenic

pjs83 said:
How do I return the highest value in a range of cells

Try...

=INDEX(A1:A100,MATCH(MAX(A1:A100),A1:A100,0))

or

=INDEX(A:A,MATCH(MAX(A:A),A:A,0))

Hope this helps!
 
Top