Total a month of sales with SUM
Add up a column of daily sales figures to get the monthly total.
SUM
Sales spreadsheets answer one question in many forms: who is ahead, who is behind, and what does that mean for their commission.
Quota attainment, tiered commission, pipeline coverage and territory comparisons. The formulas are not complex, but the business rules are fiddly and the numbers are personal — if a commission calculation is wrong, someone notices immediately and it is awkward.
Tiered logic tested in the wrong order. Nested conditions evaluate top down and stop at the first match, so checking the lowest threshold first quietly caps everyone at the bottom tier — and the sheet calculates cleanly while doing it.
Applying a tiered commission rule, calculating attainment against quota, and ranking reps without sorting the data.
13 exercises using the situations above, ordered from most approachable to hardest.
Add up a column of daily sales figures to get the monthly total.
SUM
Calculate the mean value of a set of customer orders.
AVERAGE
Identify the extremes in a column of values.
MAX · MIN
Multiply quantity by unit price to get a line total.
Divide actual sales by target to get an achievement percentage.
Use IF to label each rep as meeting or missing their target.
IF
Add up only the rows matching a text condition.
SUMIF
Match a customer ID against a reference table to return their region.
XLOOKUP
Use VLOOKUP with exact match to pull prices from a product table.
VLOOKUP
Apply two conditions at once to a conditional sum.
SUMIFS
Return one of three labels depending on where a value falls.
IF
Return the right rate from several tiers without nesting.
IFS
Combine ranking with a lookup to return a name, not just a number.
LARGE · INDEX · MATCH