+ Reply to Thread
Results 1 to 3 of 3

Help with if statement

  1. #1
    Registered User
    Join Date
    06-11-2013
    Location
    United States
    MS-Off Ver
    Excel 2010
    Posts
    1

    Question Help with if statement

    Hello, I need help to develop a file to track profit on jobs. There is royalty charged on the amount of the job, and there are breaks for certain revenue levels.
    The breakdown is like this:
    Revenue: $0-$80000,$80001-$125000,$125001-$225000,$225000+
    Royalty: 17%, 11%, 10%, 5%
    The royalty break only lowers for the revenue after the break value.
    What I'm looking to do is have the cell add up each jobs cost and categorize to the proper royalty level and spit out value.

  2. #2
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Help with if statement

    Maybe this...

    Create this 2 column table:

    Please Login or Register  to view this content.
    Assume that table is in the range D2:E5.

    A2 = some number

    This formula entered in B2:

    =LOOKUP(A2,D2:E5)

    Format as Percentage
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  3. #3
    Valued Forum Contributor
    Join Date
    09-10-2012
    Location
    Los Angeles, CA
    MS-Off Ver
    Excel 2010
    Posts
    929

    Re: Help with if statement

    If your number is in A1... put this formula in B1

    =MIN(A1,80000)*0.17+MAX((MIN(A1,125000)-80000),0)*0.11+MAX((MIN(A1,225000)-125000),0)*0.1+MAX((MIN(A1,10000000)-225000),0)*0.05
    Last edited by djapigo; 06-11-2013 at 07:37 PM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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