Calculate Sales Commission With a Flat or Tiered Rate
Every month you calculate what each rep earned in commission, and doing it by hand — especially when rates change at sales thresholds — invites disputes and mistakes.
Excel & Google Sheets
This formula works in both Excel and Google Sheets.
How it works
For a flat commission, multiply sales (B2) by the rate (C2) — keep the rate in its own column so changing it never means editing formulas. For tiered plans where the rate depends on the sales total, nest IF: =B2*IF(B2>=50000,0.08,IF(B2>=25000,0.06,0.04)) pays 8% at $50,000 and up, 6% from $25,000, and 4% below that. IF checks the conditions top to bottom and stops at the first true one, which is why the highest threshold must come first. Note this version applies one rate to the whole amount — a rep crossing a tier gets the better rate on everything, so payouts jump at the thresholds.
When to use it
Use this for monthly commission runs, sales contests, referral payouts, or any pay-for-performance calculation. A visible formula the whole team can check prevents payout disputes.
Common mistakes
Did this formula help?
Engine-verified against the sample data aboveLast reviewed 2026-07-08