If you had a list of numbers in the cells from A2 to A20, you could find the highest and lowest values using the MAX and MIN functions as follows:
=MAX(A2:A20)
=MIN(A2:A20)
You could also use the LARGE and SMALL functions in the ways shown below, though they are generally used for getting values like second largest or third smallest. In those cases you would change the 1 in the below examples to the appropriate values.
=LARGE(A2:A20,1)
=SMALL(A2:A20,1)
Chat with our AI personalities