FormulaCraft

How to calculate a performance bonus in Excel and Google Sheets

Excel & Google Sheets
=A2*IF(B2>="Excellent",0.15,IF(B2="Good",0.1,IF(B2="Meets Expectations",0.05,0)))

Verified example

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

Base SalaryRatingBonus
80000Excellent
60000Good
55000Meets Expectations
45000Below Expectations

=A2*IF(B2>="Excellent",0.15,IF(B2="Good",0.1,IF(B2="Meets Expectations",0.05,0)))12000

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. 1Column A = Base Salary, Column B = Performance Rating (text: Excellent, Good, Meets Expectations, Below Expectations).
  2. 2In C2 enter: =A2*IF(B2="Excellent",0.15,IF(B2="Good",0.1,IF(B2="Meets Expectations",0.05,0)))
  3. 3Adjust the percentages (0.15, 0.1, 0.05) to match your company's bonus policy.
  4. 4For numeric ratings (1–5), replace text comparisons with >=4, >=3, etc.

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 calculate bonus on target earnings rather than base salary?

Replace A2 with the target earnings cell. The rest of the formula stays the same.

Can I cap the bonus at a maximum amount?

Yes — wrap the formula with MIN: =MIN(50000, A2*IF(B2="Excellent",0.15,…)).

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: