+ Reply to Thread
Results 1 to 5 of 5

Commission Percent based on Gross Margin Percent Formula

  1. #1
    Registered User
    Join Date
    11-26-2009
    Location
    Austin, Texas
    MS-Off Ver
    Excel 2007
    Posts
    3

    Commission Percent based on Gross Margin Percent Formula

    Need help with this formula. So if Gross Margin % is 44%, commission percent would be 8%.

    Tried this: =IF(E14<30%,"",IF(E14>30%,6%,IF(E14>35%,7%,IF(E14>35%,8%,IF(E14>40%,9%,IF(E14>45%,10%,IF(E14>50%,11%,IF(E14>55%,11%))))))))
    But value returned is always 6%.

    Gross margin % Commission $
    <=29%--------->0%
    30% ------------>6%
    35% ------------>7%
    40% ------------>8%
    45% ------------>9%
    50% ------------>10%
    =>55% ------------>11%

  2. #2
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP and 2007
    Posts
    15,819

    Re: Commission Percent based on Gross Margin Percent Formula

    45% is greater than 30%, so the nested IF() returns the "value_if_true" argument for the >30% test. In order to get your nested IF() to work, you need to make sure all of your tests are the same direction =IF(<30%,...,IF(<35%,...,IF(<40%,...,etc.)))

    If you are interested, I would be inclined to use a lookup table and lookup function with the approximate match option (4th argument of VLOOKUP() is TRUE). With a small change to your "lookup table" (put 0% in where you have <=29% and enter 55% where you have >=55%), then a simple =VLOOKUP(margin,lookup_table,2,TRUE) will return the corresponding commission.
    Quote Originally Posted by shg
    Mathematics is the native language of the natural world. Just trying to become literate.

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

    Re: Commission Percent based on Gross Margin Percent Formula

    If the commmission rate isn't interpolated between tiers,

    A
    B
    C
    1
    GM
    Comm
    2
    0%
    0%
    3
    30%
    6%
    4
    25%
    7%
    5
    40%
    8%
    6
    45%
    9%
    7
    50%
    10%
    8
    55%
    11%
    9
    100%
    11%
    10
    11
    GM
    Comm
    12
    29%
    0%
    B12: =VLOOKUP(A12, $A$2:$B$9, 2)
    13
    30%
    6%
    14
    34%
    7%
    15
    35%
    7%
    16
    39%
    7%
    17
    40%
    8%
    18
    44%
    8%
    19
    45%
    9%
    20
    49%
    9%
    21
    50%
    10%
    22
    54%
    10%
    23
    55%
    11%
    24
    59%
    11%
    Entia non sunt multiplicanda sine necessitate

  4. #4
    Forum Expert
    Join Date
    03-23-2004
    Location
    London, England
    MS-Off Ver
    Excel 2019
    Posts
    7,064

    Re: Commission Percent based on Gross Margin Percent Formula

    Try

    =LOOKUP(E14,{0,0.29,0.30,0.35,0.40,0.45,0.50,0.55},{0,0,0.6,0.7,0.8,0.9,0.10,0.11})
    Regards
    Special-K

    Ensure you describe your problem clearly, I have little time available to solve these problems and do not appreciate numerous changes to them.

  5. #5
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Commission Percent based on Gross Margin Percent Formula

    Hi

    One way

    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

+ 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. Net Margin Formula Using SUM= To Calculate Gross Margin Cells
    By jezrp22 in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 02-26-2015, 08:41 PM
  2. Formula or function to find percent of a percent in a population
    By maldron in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 10-25-2013, 08:26 PM
  3. Replies: 2
    Last Post: 05-24-2012, 05:49 AM
  4. Graph Actual Percent with Suggested Percent
    By jaytaylor in forum Excel Charting & Pivots
    Replies: 5
    Last Post: 07-05-2010, 07:09 AM
  5. [SOLVED] Formatting a number to look like a Percent without a percent sign
    By David Iacoponi in forum Excel General
    Replies: 2
    Last Post: 09-15-2005, 02:05 PM
  6. [SOLVED] calculate commission $ based on total sold and commission percent
    By blondeindenver in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-05-2005, 10:05 PM
  7. Need Formula or Function to calculate Margin (reverse of Percent a
    By Ken in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 02-07-2005, 06:06 AM

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