+ Reply to Thread
Results 1 to 4 of 4

Reverse Commission Calculation

Hybrid View

  1. #1
    Registered User
    Join Date
    02-13-2013
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    2

    Reverse Commission Calculation

    I'm trying to make a paycheck/commission calculator.

    We get paid commission like the following:
    25% of GP up to 1000
    50% of GP from 1-2k
    100% of GP over 2K

    I have the following formula in excel to show commission based on GP, but I need a reverse formula to show GP needed to achieve the commission target.

    =IF((E9)<=1000,0.25*E9,IF(AND((E9)>1000,(E9)<=2000),(250+(0.5*(E9-1000))),IF(AND((E9)>2000,(E9)>2000),(750+(E9-2000)),750+(E9-2000))))

    Any help would be awesome,

    Thanks!

  2. #2
    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: Reverse Commission Calculation

           ----A---- ---B--- ------------------------------------------C------------------------------------------
       1      GP      Rate                                                                                        
       2                     Blank row required                                                                   
       3   $0            25%                                                                                      
       4   $1,000        50%                                                                                      
       5   $2,000       100%                                                                                      
       6                                                                                                          
       7      GP      Comm                                                                                        
       8   $0             0  B8 and down: =SUMPRODUCT((A8>$A$3:$A$5) * (A8-$A$3:$A$5) * ($B$3:$B$5 - ($B$2:$B$4)))
       9   $1,000       250                                                                                       
      10   $2,000       750                                                                                       
      11   $100,000  98,750                                                                                       
      12                                                                                                          
      13     Comm      GP                                                                                         
      14   $100      $400    B14 and down: =PERCENTILE($A$8:$A$11, PERCENTRANK($B$8:$B$11, A14, 6))               
      15   $200      $800                                                                                         
      16   $300      $1,100                                                                                       
      17   $400      $1,300                                                                                       
      18   $500      $1,500                                                                                       
      19   $600      $1,700                                                                                       
      20   $700      $1,900                                                                                       
      21   $800      $2,050                                                                                       
      22   $900      $2,150                                                                                       
      23   $1,000    $2,250                                                                                       
      24   $1,100    $2,350                                                                                       
      25   $1,200    $2,450
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Forum Expert ConneXionLost's Avatar
    Join Date
    03-11-2009
    Location
    Victoria, Canada
    MS-Off Ver
    2010
    Posts
    2,952

    Re: Reverse Commission Calculation

    If the Commission target is placed in cell F9, then:

    =IF(F9>=750,(F9-750+2000),IF(F9>=250,(F9-250)/0.5+1000,F9/0.25))
    will provide the GP required to earn it.
    Would you like to say thanks? Please click the: " Add Reputation" button, on the grey bar below the post.

  4. #4
    Registered User
    Join Date
    02-13-2013
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: Reverse Commission Calculation

    Quote Originally Posted by ConneXionLost View Post
    If the Commission target is placed in cell F9, then:

    =IF(F9>=750,(F9-750+2000),IF(F9>=250,(F9-250)/0.5+1000,F9/0.25))
    will provide the GP required to earn it.
    This worked perfect! Thank you so much

+ 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