Five functions, one recipe.
Five built-in functions handle every descriptive measure in this DQ. Each one takes a range — the column of data — and returns the single number that summarizes it.
=AVERAGE(D4:D120) for the mean.
=MEDIAN(D4:D120) for the middle. =STDEV.P(
D4:D120) for the population standard deviation (this
template treats the 117 wells as the full population, not a
sample). And the range is computed by hand:
=MAX(D4:D120)-MIN(D4:D120).
The same five formulas work on the After column (E4:E120) and on the Improvement column (F4:F120). Type once, copy across — the column reference is the only thing that changes.
=MEDIAN(D4:D120) → median
=STDEV.P(D4:D120) → population SD
=MAX(D4:D120) − =MIN(D4:D120) → range






