BeginnerStatistical Functions
Find the average order value with AVERAGE
Calculate the mean value of a set of customer orders.
AVERAGE
3 min10 points
Harbor Supply's board pack quotes what share of revenue comes from the three largest orders. The list is re-exported every month in a different order, so sorting it by hand and adding the top rows is both slow and easy to get wrong.
| Row number | A | B | C | D | E | F |
|---|---|---|---|---|---|---|
| 1 | Order | Value | ||||
| 2 | SO-9301 | $1,200 | Top three total | |||
| 3 | SO-9302 | $850 | ||||
| 4 | SO-9303 | $2,400 | ||||
| 5 | SO-9304 | $640 | ||||
| 6 | SO-9305 | $5,200 | ||||
| 7 | SO-9306 | $3,100 | ||||
| 8 | SO-9307 | $920 | ||||
| 9 | SO-9308 | $1,480 | ||||
| 10 | SO-9309 | $4,900 | ||||
| 11 | SO-9310 | $710 | ||||
| 12 |
Combine ranking with a lookup to return a name, not just a number.
LARGE · INDEX · MATCH
Sum the orders that beat the average, without typing the average in yourself.
SUMIF · AVERAGE
Compare the second-best and second-worst weeks to get a fairer range.
LARGE · SMALL