Max function

R

Rod Davis

I have no problem usingthe Max function to locate the
highest value in a row, but I need to be able to extract
the highest AND next-to-highest vale from a row.

Does anyone have any ideas please? Thank you!
 
H

Harlan Grove

I have no problem usingthe Max function to locate the
highest value in a row, but I need to be able to extract
the highest AND next-to-highest vale from a row.

MAX(X) == LARGE(X,1)

Try LARGE(X,2)
 
Top