+ Reply to Thread
Results 1 to 5 of 5

Formula Help

  1. #1
    Registered User
    Join Date
    02-17-2014
    Location
    Chicago, il
    MS-Off Ver
    Excel 2010
    Posts
    10

    Formula Help

    I can't seem to get the formula right.

    It is a salesperson bonus

    I have the over margin dollars in J7. (this could be a negitave number)

    I wanted to write a formula using J7 number.

    IF J7 is less than 0 = 0
    IF J7 is greater than 0 but less than 50,000 they get 7.5% commission of J7
    IF J7 is greater than 50,000 they get 7.5 % of the first 50,000 and 5% of the amount over 50,000

    Thanks for any help

  2. #2
    Forum Contributor
    Join Date
    12-09-2013
    Location
    India
    MS-Off Ver
    Excel 2003
    Posts
    171

    Re: Formula Help

    =if(j7<=0,0,if(j7<50000,7.5%*j7,(50000*7.5%)+((j7-50000)*5%)))

  3. #3
    Forum Expert bebo021999's Avatar
    Join Date
    07-22-2011
    Location
    Vietnam
    MS-Off Ver
    Excel 2016
    Posts
    9,466

    Re: Formula Help

    Try this:
    =IF(J7<0,0,IF(J7<50000,J7*7.5%,J7*5%-1250))
    Quang PT

  4. #4
    Forum Contributor
    Join Date
    12-09-2013
    Location
    India
    MS-Off Ver
    Excel 2003
    Posts
    171

    Re: Formula Help

    Quote Originally Posted by bebo021999 View Post
    Try this:
    =IF(J7<0,0,IF(J7<50000,J7*7.5%,J7*5%-1250))
    It should be +1250

    =IF(J7<0,0,IF(J7<50000,J7*7.5%,J7*5%+1250))

  5. #5
    Registered User
    Join Date
    02-17-2014
    Location
    Chicago, il
    MS-Off Ver
    Excel 2010
    Posts
    10

    Re: Formula Help

    Thank you all this was helpful and worked perfect.

+ 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. how to hide formula in formula box, view lookup result in formula box?
    By vengatvj in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 10-14-2013, 04:06 PM

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.6.0 RC 1