Commission rates that step up with sales are a classic lookup job. A VLOOKUP in approximate-match mode reads a tier table and returns the right rate — change the tiers in the table, not the formula.
TRUE finds the highest threshold not exceeding the sales figure, returning that tier’s rate; multiply by sales for the commission.
The example
Sales of $32,000 falls in the 6% tier.
| A | B | C | |
|---|---|---|---|
| 1 | Tier from | Rate | |
| 2 | $0 | 3% | |
| 3 | $10,000 | 5% | |
| 4 | $25,000 | 6% | |
| 5 | Sales $32,000 → commission | $1,920 |
The formula
Look up the rate, then apply it:
How it works
Approximate-match VLOOKUP is built for tier tables:
- Build a tier table: the lower threshold of each band in the left column, the rate in the next — sorted ascending.
VLOOKUP(sales, table, 2, TRUE)finds the largest threshold that is ≤ the sales figure and returns its rate.- Multiply the rate by sales for the commission. To change the plan, edit the table — the formula never changes.
- For a handful of fixed tiers with no table,
IFSworks too:=IFS(B2>=25000,0.06, B2>=10000,0.05, TRUE,0.03).
Marginal (progressive) commission? The lookup above pays one rate on the whole amount. To pay each tier’s rate only on the dollars within that band (like tax brackets), use a bracket-style SUMPRODUCT — see the tax-bracket recipe.
Try it: interactive demo
Enter a sales figure; see the tier and commission.
Variations
IFS, no table
For a few fixed tiers:
Flat bonus above target
Add a kicker:
Cap the commission
Limit the payout:
Pitfalls & errors
Sort the table ascending. Approximate-match VLOOKUP requires the threshold column sorted low-to-high, or it returns the wrong tier.
Use the lower bound of each band. The left column is the start of each tier (0, 10000, 25000), not the upper limit.
Whole-amount vs marginal. This pays one rate on all sales. If your plan is progressive, use a bracket calculation instead.
Practice workbook
Frequently asked questions
How do I calculate tiered commission in Excel?
Can I do it without a lookup table?
How do I pay each tier's rate only on the dollars in that band?
Stop fighting formulas. Learn them in a day.
This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.
See the Formulas & Functions Class