+ Reply to Thread
Results 1 to 21 of 21

Sumproduct Tiered Commission Payment

Hybrid View

  1. #1
    Registered User
    Join Date
    04-05-2018
    Location
    South Africa
    MS-Off Ver
    10
    Posts
    6

    Unhappy Sumproduct Tiered Commission Payment

    Hi,

    I have used sumproduct formula to calculate tiered commission payments and all works correctly, except if you exceed the threshold on the first deal.
    Assuming the threshold is 1,050,000 at 70% and your first deal is 2,000,000 then the payment should be 1,400,000, however the sumproduct formula applied calculates 1,205,000. Can't figure out why?
    Attached Files Attached Files

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2504 (Windows 11 Home 24H2 64-bit)
    Posts
    90,658

    Re: Sumproduct Tiered Commission Payment

    I can't see anywhere where the amount of R1,400,000 is defined.

    Does this help?

    =IF(SUM(C$7:C7)>MAX($A$19:$A$23),1400000, ...
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    NB:
    as a Moderator, I never accept friendship requests.
    Forum Rules (updated August 2023): please read them here.

  3. #3
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,940

    Re: Sumproduct Tiered Commission Payment

    may be
    e7=LOOKUP(D7,$A$19:$A$23,D$19:D$23)*D7-SUM(E$6:E6)
    Try this and copy towards down
    if not show your expected result from E7:E9
    Samba

    Say thanks to those who have helped you by clicking Add Reputation star.

  4. #4
    Forum Guru Kaper's Avatar
    Join Date
    12-14-2013
    Location
    Warsaw, Poland
    MS-Off Ver
    most often: Office 365 in Windows environment
    Posts
    8,863

    Re: Sumproduct Tiered Commission Payment

    Yet another approach: E7 and copy down:
    Formula: copy to clipboard
    =INDEX($D$19:$D$23,MATCH(D7,$A$19:$A$23,1))*C7
    Best Regards,

    Kaper

  5. #5
    Registered User
    Join Date
    04-05-2018
    Location
    South Africa
    MS-Off Ver
    10
    Posts
    6

    Re: Sumproduct Tiered Commission Payment

    Hi Kaper,

    thank you - the index corrects the first formula, however if I then change the commission amount further tiered payments are not calculated correctly further down. See attached and result it should bring.
    Attached Files Attached Files

  6. #6
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,940

    Re: Sumproduct Tiered Commission Payment

    e7=SUMPRODUCT(($D7>$A$27:$A$31)*($D7-$A$27:$A$31)*($E$27:$E$31))-SUM(E$6:E6)
    Try this and copy towards down

  7. #7
    Registered User
    Join Date
    04-05-2018
    Location
    South Africa
    MS-Off Ver
    10
    Posts
    6

    Re: Sumproduct Tiered Commission Payment

    hi,

    that's the original formula used but does not work if you exceed threshold on first deal.

  8. #8
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,807

    Re: Sumproduct Tiered Commission Payment

    See attached:

    in H7

    =SUMPRODUCT(($D7>=$A$19:$A$23)*($D7-$A$19:$A$23),$E$19:$E$23)

    Copy down

    this is CUMULATIVE commission

    in I7

    =H7-H6

    Copy down
    Attached Files Attached Files
    Last edited by JohnTopley; 04-05-2018 at 10:02 AM.

  9. #9
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,807

    Re: Sumproduct Tiered Commission Payment

    Or in E7

    =SUMPRODUCT(($D7>=$A$19:$A$23)*($D7-$A$19:$A$23),$E$19:$E$23)-SUM($E$6:$E6)

    Copy down
    Attached Files Attached Files
    Last edited by JohnTopley; 04-05-2018 at 08:13 AM.

  10. #10
    Forum Expert
    Join Date
    07-20-2011
    Location
    Mysore, India.
    MS-Off Ver
    Excel 2019
    Posts
    8,710

    Re: Sumproduct Tiered Commission Payment

    Try this in G6 then drag down

    =SUM($C$7:$C7)*INDEX($D$19:$D$23,MATCH(SUM($C$7:$C7),$A$19:$A$23,1))-SUM(E$6:E6)
    Attached Files Attached Files
    Pl note
    Array formula should be confirmed with Ctrl+Shift+Enter keys together.
    If answere is satisfactory press * to add reputation.

  11. #11
    Registered User
    Join Date
    04-05-2018
    Location
    South Africa
    MS-Off Ver
    10
    Posts
    6

    Re: Sumproduct Tiered Commission Payment

    Hi All,

    thanks for all the inputs but have tried the various suggestions but its still not working correctly. Certain formulas correct the first row problem I initially queried but then the resultant other outcomes are incorrect, being too high based on the tier or some negative values come out.

  12. #12
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,940

    Re: Sumproduct Tiered Commission Payment

    see the attached file and show your expected result, and clarify the question if commission amount is not equal in booth the cases
    Attached Files Attached Files

  13. #13
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,807

    Re: Sumproduct Tiered Commission Payment

    So what is different in these ....
    Attached Files Attached Files
    Last edited by JohnTopley; 04-06-2018 at 03:26 AM.

  14. #14
    Registered User
    Join Date
    04-05-2018
    Location
    South Africa
    MS-Off Ver
    10
    Posts
    6

    Re: Sumproduct Tiered Commission Payment

    Hi, see attached using sumproduct formula for 2 possible scenarios comparing formula to desired result.
    Attached Files Attached Files

  15. #15
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,940

    Re: Sumproduct Tiered Commission Payment

    please check your attachment, I think It have mistakes, please recheck again

  16. #16
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,807

    Re: Sumproduct Tiered Commission Payment

    Your logic is inconsistent and does not agree with the first sample posted.

    You start by producing a CUMULATIVE value in F THEN choose to have the Individual (row) contribution for the last two lines.

    If you look at the file I posted in #13, your answers are a mixture of results in column H and Column I.

  17. #17
    Registered User
    Join Date
    04-05-2018
    Location
    South Africa
    MS-Off Ver
    10
    Posts
    6

    Re: Sumproduct Tiered Commission Payment

    sorry - gremlins.
    Attached Files Attached Files

  18. #18
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,807

    Re: Sumproduct Tiered Commission Payment

    Your calculation in F18 is wrong because you have paid 60% commission on the TOTAL amount of 960703.73 rather than on the Tiering.

    60% should only have paid on 10703.73 i.e the amount above the 950000 threshold.

  19. #19
    Registered User
    Join Date
    04-12-2018
    Location
    New Mexico
    MS-Off Ver
    2010
    Posts
    1

    Re: Sumproduct Tiered Commission Payment

    I am trying to determine a customers usage from charges on a bill. Below is the charged rate for different amounts of units the customer can purchase on a monthly basis. Please let me know if you can suggest a formula to take charged amount(A1) to usage amount. Thank you.

    0-450 units at $.1134
    450-900 units at $.153
    900+ at $.162825

  20. #20
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2504 (Windows 11 Home 24H2 64-bit)
    Posts
    90,658

    Re: Sumproduct Tiered Commission Payment

    Unfortunately your post does not comply with Rule 2 of our Forum RULES. Do not post a question in the thread of another member -- start your own thread.

    If you feel an existing thread is particularly relevant to your need, provide a link to the other thread in your new thread.

    Old threads are often only monitored by the original participants. New threads not only open you up to all possible participants again, they typically get faster response, too.

  21. #21
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Sumproduct Tiered Commission Payment

    Entia non sunt multiplicanda sine necessitate

+ 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. Tiered commission pay
    By BlueStreamCS in forum Excel Formulas & Functions
    Replies: 15
    Last Post: 01-03-2018, 11:46 AM
  2. [SOLVED] Tiered commission formula past 6
    By trosasco23 in forum Excel General
    Replies: 1
    Last Post: 09-29-2014, 08:26 AM
  3. Tiered Commission Structure
    By emily.kell in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 05-18-2014, 10:59 PM
  4. Need help with a tiered commission calculator
    By bmc1492 in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 01-06-2014, 10:46 AM
  5. Tiered Commission Calculation
    By Rushmore in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 10-01-2012, 12:18 AM
  6. Tiered Commission
    By rock_chalk35 in forum Excel General
    Replies: 7
    Last Post: 06-08-2012, 01:39 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