+ Reply to Thread
Results 1 to 6 of 6

How do you calculate a percentage of sum when there are differing parameters?

  1. #1
    Registered User
    Join Date
    08-09-2013
    Location
    london
    MS-Off Ver
    Excel 2003
    Posts
    7

    How do you calculate a percentage of sum when there are differing parameters?

    Hi Guys,

    Another problem I need solving.

    I have attached a commission form that I need to add formulas to.

    The commission rate is;
    There are 2 commission rates and you only earn commission on anything you make over £5000
    when the total gross margin (TGM) is over £5,000 but less than £25,000 the commission is calculated as (18% of(TGM-5000)).
    when the TGM is over £25,000 the commission is calculated as (25% of (TGM-5000)).


    My problem is...
    - In C25 I need a formula that calculates what the individuals commission rate is based on their total gross margin - (whether it is 18% or 25%)
    - In C27 I need it to calculate what commission is due based on the commission rate in C25, taking into account the £5000 threshold (which you have to minus from any gross margin)

    I know this sounds complicated but if you need any clarification please ask.

    Any help will be welcome.

    Thanks in advance!
    Attached Files Attached Files

  2. #2
    Valued Forum Contributor
    Join Date
    10-26-2008
    Location
    Birmingham, UK
    MS-Off Ver
    All versions up to 2010
    Posts
    1,025

    Re: How do you calculate a percentage of sum when there are differing parameters?

    Hi
    Commission rate formula:
    =IF(AND($E$25>5000,$E$25<25000),"18%",IF($E$25>=25000,"25%"))
    Commission due formula:
    =IF(AND($E$25>5000,$E$25<25000),"18%",IF($E$25>=25000,"25%"))
    Tony

  3. #3
    Registered User
    Join Date
    08-09-2013
    Location
    london
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: How do you calculate a percentage of sum when there are differing parameters?

    Hi ARGK,

    Thank you for the help.

    The first formula works for commission rate but the second formula for commission due is exactly the same as the first and it calculates as a percentage not in pounds.

    I know the second formula is and 'IF' and it is different from the first.

  4. #4
    Valued Forum Contributor
    Join Date
    10-26-2008
    Location
    Birmingham, UK
    MS-Off Ver
    All versions up to 2010
    Posts
    1,025

    Re: How do you calculate a percentage of sum when there are differing parameters?

    Hi
    Sorry - cut and pasted the wrong formula. Here is the correct one:

    =IF(AND($E$25>5000,$E$25<25000),($E$25-5000)*18%,IF($E$25>25000,($E$25-5000)*25%))

    Tony

  5. #5
    Registered User
    Join Date
    08-09-2013
    Location
    london
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: How do you calculate a percentage of sum when there are differing parameters?

    Thank you ARGK...works perfect... you have saved me a lot of time!

  6. #6
    Valued Forum Contributor
    Join Date
    10-26-2008
    Location
    Birmingham, UK
    MS-Off Ver
    All versions up to 2010
    Posts
    1,025

    Re: How do you calculate a percentage of sum when there are differing parameters?

    Thanks for the feedback.

+ 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. calculate percentage of a percentage
    By sonogood in forum Excel - New Users/Basics
    Replies: 3
    Last Post: 04-26-2013, 01:59 PM
  2. VBA code to calculate value against given parameters then paste result value in cell
    By deepakya3 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 10-15-2011, 11:01 AM
  3. How to calculate the weightage using 3 parameters
    By catanalyst in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 12-04-2010, 12:42 PM
  4. calculate a percentage of a percentage
    By ianmb in forum Excel - New Users/Basics
    Replies: 3
    Last Post: 02-03-2010, 08:20 AM
  5. [SOLVED] percentage:how do I calculate the percentage change
    By Knowledge001 in forum Excel General
    Replies: 3
    Last Post: 11-25-2005, 02:40 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