Purpose
Return value
Syntax
=MEDIAN(number1,[number2],...)
- number1 - A number or cell reference that refers to numeric values.
- number2 - [optional] A number or cell reference that refers to numeric values.
Using the MEDIAN function
The MEDIAN function returns the median (middle number) in a set of data. The calculation performed by MEDIAN varies according to the number of numeric values provided. When the number is odd, MEDIAN returns the middle number in the group. When the number is even, MEDIAN returns the average of the two numbers in the middle.
The MEDIAN function takes multiple arguments in the form number1 , number2 , number3 , etc. Arguments can be a hardcoded constant, a cell reference, or a range, in any combination. MEDIAN ignores empty cells, text values, and the logical values TRUE and FALSE. The MEDIAN function will accept up to 255 separate arguments.
Examples
When the number of values provided is odd, MEDIAN returns the middle number:
=MEDIAN(1,2,3,4,5) // returns 3
=MEDIAN(1,4,5,7,11) // returns 5
When the number of values provided is even, MEDIAN returns the average of the two middle numbers:
=MEDIAN(1,2,3,4,5,6) // returns 3.5
=MEDIAN(1,2,4,6,8,9) // returns 9
In the worksheet shown above, the formulas in H5 and H6 are:
=MEDIAN(B5:B16) // returns 83.5
=MEDIAN(D5:D16) // returns 80
Note that MEDIAN ignores the empty cell in D5:D16 and returns the middle number in the eleven values provided.
Notes
- When the count of numbers is odd, MEDIAN returns the middle number.
- When the count of numbers is even, MEDIAN returns the average of the two middle numbers.
- MEDIAN ignores empty cells, the logical values TRUE and FALSE, and text .
- MEDIAN returns a #NUM! error if no numeric values are provided.
- Arguments can be numbers, names, arrays , or references, up to 255 total.
Purpose
Return value
Syntax
=MIN(number1,[number2],...)
- number1 - Number, reference to numeric value, or range that contains numeric values.
- number2 - [optional] Number, reference to numeric value, or range that contains numeric values.
Using the MIN function
The MIN function returns the smallest numeric value in the data provided. The MIN function can be used to return the smallest value from any type of numeric data. For example, MIN can return the fastest time in a race, the earliest date, the smallest percentage, the lowest temperature, or the bottom sales number.
The MIN function takes multiple arguments in the form number1 , number2 , number3 , etc. up to 255 total. Arguments can be a hardcoded constant, a cell reference , or a range , in any combination. MIN ignores empty cells, text values , and the logical values TRUE and FALSE.
Basic example
The MIN function returns the smallest numeric value in supplied data:
=MIN(12,17,25,11,23) // returns 11
When given a range , MIN returns the smallest value in the range:
=MIN(A1:A10) // minimum value in A1:A10
Mixed arguments
The MIN function can accept a mix of arguments:
=MIN(5,10)
=MIN(A1,A2,A3)
=MIN(A1:A10,1)
=MIN(A1:A10,C1:C10)
Logical values
The MIN function will ignore logical values and numbers entered as text that appear on the worksheet. However, if such values are provided directly as arguments , MIN will use them:
=MIN(5,TRUE) // returns 1
=MIN(7,5,"3") // returns 3
Errors
When MIN encounters an error in a range, it will return an error. To calculate a minimum value while ignoring errors, you can use the AGGREGATE function , which can be configured to ignore errors.
Other functions
Excel provides other functions that deal with minimum values and rank:
- To calculate the minimum value with criteria, use the MINIFS function .
- To retrieve the nth smallest value in a data set, use the SMALL function .
- To determine the rank of a number in a set of data, use the RANK function .
Notes
- Arguments can be provided as numbers, names, arrays, or references.
- MIN accepts up to 255 arguments. If arguments contain no numbers, MIN returns 0.
- MIN ignores empty cells, text values, and TRUE and FALSE in references.
- MIN will evaluate numbers as text and logical values supplied directly as arguments.
- To include logical values in a reference, see the MINA function .