+ Reply to Thread
Results 1 to 8 of 8

Thread: Bonus calculation using IF statement

  1. #1
    Registered User
    Join Date
    09-08-2008
    Location
    australia
    Posts
    3

    Bonus calculation using IF statement

    Hi there,

    I need to calculate the bonus to be received by an employee who has generated total sales of for example $14,150. The bonus scale is 10% for amounts between 10000-12000, 20% for amounts between 12000-14000 and 25% for amounts over 14000. It must be an IF statement. HELP!!

    Thanks to anyone who's able to help in advance.

    Excelbonus

  2. #2
    Forum Guru rwgrietveld's Avatar
    Join Date
    09-02-2008
    Location
    Netherlands
    MS-Off Ver
    XL 2007 / XL 2010
    Posts
    1,671

    re: Bonus calculation using IF statement

    What's my bonus?

    =IF(A1<10000;A1*1;IF(A1<12000;A1*1,1;IF(A1<14000;A1*1,2;A1*1,25)))

    <10000 No Bonus
    <12000 10%
    <14000 20%
    >=14000 25%

    Gr,
    Ricardo
    Last edited by rwgrietveld; 09-08-2008 at 03:52 AM. Reason: small correction

  3. #3
    Valued Forum Contributor
    Join Date
    08-26-2008
    Location
    singapore
    Posts
    618
    I have a shorter formula

    
    =IF(A1>14000,0.25,IF(A1>12000,0.2,IF(A1>10000,0.1,0)))*A1

  4. #4
    Registered User
    Join Date
    09-08-2008
    Location
    australia
    Posts
    3
    Thanks to you both for the quick replies. Unfortunately neither solution seems to work. The employee in this example should get a total bonus of $637.50 ($200 = 10% for amounts between 10-12000 ($2000), $400 = 20% for amounts between 12-14000 ($2000) and $37.50 = 25% for amounts over 14000 ($150)).

    Any other ideas?

    Thanks again.

  5. #5
    Valued Forum Contributor MickG's Avatar
    Join Date
    11-23-2007
    Location
    Banbury,Oxfordshire
    Posts
    888
    Hi, Is this any better ??
    =+IF(AND(A6>=10000,  A6<12000), (12000-A6)*0.1,IF(AND(A6>=12000,A6<14000),200+(14000-A6)*0.2,IF(A6>=14000,600+(A6-14000)*0.25,"No Bonus")))
    Regards Mick

  6. #6
    Forum Guru rwgrietveld's Avatar
    Join Date
    09-02-2008
    Location
    Netherlands
    MS-Off Ver
    XL 2007 / XL 2010
    Posts
    1,671

    re: Bonus calculation using IF statement

    This one you could have figured out yourself now. Formula remains the same

    =IF(A8>14000;0,25*(A8-14000)+0,2*2000+0,1*2000;IF(A8>12000;(A8-12000)*0,2+0,1*2000;IF(A8>1000;(A8-10000)*0,1;0)))

    Gr,
    Ricardo

  7. #7
    Extremely Helpful member
    Join Date
    12-23-2006
    Location
    Belgium
    MS-Off Ver
    XL2003
    Posts
    6,127
    Here's a nice example using SUMPRODUCT
    Quoting entire posts clutters the forum and makes threads hard to read !

    If you are pleased with a member's answer then use the Star icon to rate it

    Click here to see forum rules

  8. #8
    Registered User
    Join Date
    09-08-2008
    Location
    australia
    Posts
    3
    Thanks to rgrietveld, it works! Fantastic, now I'll be able to sleep again!!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Show number based on month of year and bonus payout
    By rodeman in forum Excel Worksheet Functions
    Replies: 2
    Last Post: 09-14-2007, 01:31 PM
  2. With Statement Questions
    By OzTrekker in forum Excel Programming
    Replies: 3
    Last Post: 07-02-2007, 02:44 AM
  3. Writing a program with changing variables. . .
    By salex in forum Excel Programming
    Replies: 0
    Last Post: 04-30-2007, 03:32 PM
  4. Disable calculation on selected sheets only
    By MikeTNT in forum Excel General
    Replies: 7
    Last Post: 11-12-2006, 12:41 PM
  5. AND conditional statement and nesting IF funtions
    By punkiegirl420 in forum Excel General
    Replies: 2
    Last Post: 10-13-2006, 09:20 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.2.0