Return the minimum, quartiles, or maximum of a dataset.
This function works the same in Google Sheets as it does in Excel — same syntax and arguments.
QUARTILE.INC(array, quart)QUARTILE.INC returns one of five cut points from a dataset: minimum, first quartile, median, third quartile, or maximum. It is a convenient wrapper around percentile-style distribution analysis.
=QUARTILE.INC(A2:A100, 3)Result: 88
Returns the third quartile.
Yes. QUARTILE.INC(array, 2) returns the median of the dataset.