So you’ve been given a long list of numbers and asked to find the largest, smallest, second largest and second smallest values. You could sort the list into ascending or descending order but you’ve been told that the order must remain as it is.

Find Highest and Lowest

Use the following functions to get the information:

HIGHEST: =MAX(A1:A23)

LOWEST: =MIN(A1:A23)

2nd HIGHEST: =LARGE(A1:A23,2)

2nd LOWEST: =SMALL(A1:A23,2)

The MAX function returns the highest value from the specified range

The MIN function returns the lowest value from the specified range

The LARGE function returns the Xth highest value from the specified range where X is a number, e.g. 2 means retrieve the 2nd highest value, 3 means retrieve the 3rd highest value etc

The SMALL function returns the Xth lowest value from the specified range where X is a number, e.g. 2 means retrieve the 2nd lowest value, 3 means retrieve the 3rd lowest value etc