+ Reply to Thread
Results 1 to 7 of 7

3 TIERS of commision - result based

Hybrid View

  1. #1
    Registered User
    Join Date
    03-06-2013
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    3

    3 TIERS of commision - result based

    Hi I am struggling with what should be a straight forward sales / recompense calculation.

    G is my variable "opportunities found" column where I imput the no. found per week.
    I wish to change from a flat 8$ per opportunity to have a tierd increasing return.
    so upto 30 pays $8 each then between 30 to 60 pays 10$ each and any over 60 pays $14.95
    At moment I have =SUM(G12*8) for the flat result - Any help appreciated!

  2. #2
    Registered User
    Join Date
    03-02-2013
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    67

    Re: 3 TIERS of commision - result based

    =IF(Opportunities<=30,Opportunities*8,IF(Opportunities<=60,Opportunities*10,Opportunities*14.95))
    In the above formula, replace opportunities with your cell ref (G12).

  3. #3
    Registered User
    Join Date
    03-06-2013
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    3

    Re: 3 TIERS of commision - result based

    Tgsekhar - Thanks I had almost the same here but It did'nt quite get there in the 3rd level
    Thanks anyway

  4. #4
    Registered User
    Join Date
    03-02-2013
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    67

    Re: 3 TIERS of commision - result based

    If your query is solved, please mark it as solved.

  5. #5
    Forum Expert
    Join Date
    06-26-2010
    Location
    Austin, TX
    MS-Off Ver
    Excel 2010
    Posts
    1,673

    Re: 3 TIERS of commision - result based

    I read this as being tiered. Try this:
    =SUMPRODUCT((A1-{0,30,60})*(A1>{0,30,60}),{8,2,4.95})
    Where A1 holds your Opportunities.
    Pauley
    --------
    If I helped with your issue, I'd appreciate a rep bump (hit the '*' icon to the bottom left of this post).

  6. #6
    Registered User
    Join Date
    03-06-2013
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    3

    Re: 3 TIERS of commision - result based

    PaulyB - Thank you ! all sorted

  7. #7
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: 3 TIERS of commision - result based

    Or with VLookup in an table.
    Notice my main language is not English.

    I appreciate it, if you reply on my solution.

    If you are satisfied with the solution, please mark the question solved.

    You can add reputation by clicking on the star * add reputation.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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