FormulaCraft

How to calculate commission in Excel and Google Sheets

Topic:Finance basics
Excel & Google Sheets
=A2*B2

Verified example

Computed by a real spreadsheet engine on the sample data below.

Sales AmountCommission RateCommission
50000.05
120000.07
8000.1
250000.06

=A2*B2250

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

Step by step

  1. 1Set up columns: Sales Amount (A) and Commission Rate as a decimal (B, e.g., 0.05 for 5%).
  2. 2In the Commission column, enter =A2*B2 to compute the commission for each sale.
  3. 3For tiered commissions (e.g., 5% up to $10,000, then 8% beyond), use a nested IF: =IF(A2<=10000, A2*0.05, 10000*0.05+(A2-10000)*0.08).

Tips

Working on a sheet you inherited? Run the Auditor on the whole file first — it flags every #REF!, #N/A, broken column pattern, and inconsistent formula in seconds, free, no signup.

Frequently asked

How do I apply different commission rates to different salespeople?

Put each person's rate in their own column or use VLOOKUP to look up the rate from a separate table based on the salesperson's name or ID.

Can I calculate commission only above a sales threshold?

Yes: =MAX(A2-threshold,0)*B2. This returns zero commission until sales exceed the threshold.

More on Finance basics

See all →

Formulas used

Related tasks

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: