Calculating Tiered Bonuses in Excel 2007

Microsoft Excel, Tips & Tricks Add comments

msexceltweak.pngIf you manage salespeople or other employees eligible for bonuses, calculating the bonus is often quite simple. For example, suppose employees get a bonus for sales over $100,000. If the employee sales are in column A, then you’d use formulas similar to the following:

=IF(A2 > 100000, “Bonus”, “”)

The formula returns the string Bonus if the sales figure goes over $100,000.

A slightly more complex case is when you want to calculate tiered bonuses for a sales team. Here’s an example:

  • If the salesperson did not meet the sales target, no bonus is given.
  • If the salesperson exceeded the sales target by less than 10 percent, a bonus of $1,000 is awarded.
  • If the salesperson exceeded the sales target by 10 percent or more, a bonus of $10,000 is awarded.

Assuming the percentage over or under the sales target is in column D, here’s a formula that handles these rules:

=IF(D2 < 0, “”, IF(D2 < 0.1, 1000, 10000))

If the value in D2 is negative, nothing is returned; if the value in D2 is less than 10 percent, the formula returns 1000; if the value in D2 is greater than or equal to 10 percent, the for­mula returns 10000. Figure 5.11 shows this formula in action.

This worksheet uses nested IF()functions to calculate a tiered bonus payment
Figure 1 This worksheet uses nested IF()functions to calculate a tiered bonus payment.

Technorati Tags: ,

Popularity: 2% [?]

Related Post

  • Calculating Break Even Analysis with MS Excel Template
  • Calculating the Future Value of an Investment in Excel 2007
  • Calculating the Number of Weekdays Between Two Dates in Excel 2007
  • Calculating Multiple Solutions to a Formula in Excel 2007
  • Calculating Inventory Value in Access 2007
  • Don't Find What You're Looking For? Please Try Here...

    Google
     

    One Response to “Calculating Tiered Bonuses in Excel 2007”

    1. Josh Says:

      My goal is to write a formula for a tiered bonus for salary. For example, a salary of $150,000 may be bonused as follows: 5% for first $25,000, then 10% for second $25,000, 15% for third $25,000, etc. Can anyone help me to write this? Thanks for any input. – JL

    Leave a Reply

    WP Theme & Icons by N.Design Studio
    Entries RSS Comments RSS Add to Technorati Favorites Log in