+ Reply to Thread
Results 1 to 55 of 55

help with excel

  1. #1
    Registered User
    Join Date
    09-02-2005
    Posts
    1

    help with excel

    I am new here so please excuse any mistakes in this posting

    I wonder if anyone out there can help me with an Excel problem i am having....

    i want Excel to calculate a commission based on the following information the these columns:

    gross sales
    less expenses
    net profit
    % of profit

    commission

    the first part is easy and i can handle that...its the calculation of the commission that is giving me problems. The calculation of commissions is as follows:

    if the percentage of profit is 20% then that is the commission amount eg: 20% of the net profit

    if the percentage of profit is less than 20% then the commission amount is whatever that figure is: eg 19.8% times the net profit

    if the percentage of profit is more than 20% then the commission amount is 20% of the net profit. eg: percentage of profit is 21.3% then the commission is 20% of the net profit...

    if there is a loss (net profit greater than the sales) then the commission should reflect a negative percentage and therefore be deducted from any commissions due

    i think that covers all the possibilities

    Thanks in advance for any help you can give with this

    Bert Hayford

  2. #2
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  3. #3
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  4. #4
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  5. #5
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  6. #6
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  7. #7
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  8. #8
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  9. #9
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  10. #10
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  11. #11
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  12. #12
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  13. #13
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  14. #14
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  15. #15
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  16. #16
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  17. #17
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  18. #18
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  19. #19
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  20. #20
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  21. #21
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  22. #22
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  23. #23
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  24. #24
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  25. #25
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  26. #26
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  27. #27
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  28. #28
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  29. #29
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  30. #30
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  31. #31
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  32. #32
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  33. #33
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  34. #34
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  35. #35
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  36. #36
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  37. #37
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  38. #38
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  39. #39
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  40. #40
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  41. #41
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  42. #42
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  43. #43
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  44. #44
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  45. #45
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  46. #46
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  47. #47
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  48. #48
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  49. #49
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  50. #50
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  51. #51
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  52. #52
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


  53. #53
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  54. #54
    bj
    Guest

    RE: help with excel

    try
    =min(prof percent,.2)*netprofit for your commision

    "daniel4214" wrote:

    >
    > I am new here so please excuse any mistakes in this posting
    >
    > I wonder if anyone out there can help me with an Excel problem i am
    > having....
    >
    > i want Excel to calculate a commission based on the following
    > information the these columns:
    >
    > gross sales
    > less expenses
    > net profit
    > % of profit
    >
    > commission
    >
    > the first part is easy and i can handle that...its the calculation of
    > the commission that is giving me problems. The calculation of
    > commissions is as follows:
    >
    > if the percentage of profit is 20% then that is the commission amount
    > eg: 20% of the net profit
    >
    > if the percentage of profit is less than 20% then the commission amount
    > is whatever that figure is: eg 19.8% times the net profit
    >
    > if the percentage of profit is more than 20% then the commission amount
    > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > commission is 20% of the net profit...
    >
    > if there is a loss (net profit greater than the sales) then the
    > commission should reflect a negative percentage and therefore be
    > deducted from any commissions due
    >
    > i think that covers all the possibilities
    >
    > Thanks in advance for any help you can give with this
    >
    > Bert Hayford
    >
    >
    > --
    > daniel4214
    > ------------------------------------------------------------------------
    > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    >
    >


  55. #55
    Duke Carey
    Guest

    RE: help with excel

    bj -

    =min(prof percent,.2)*netprofit

    That will result in a positive commission for negative profits

    Maybe

    =if(prof percent >.2,.2,abs(prof percent))*net profit



    "bj" wrote:

    > try
    > =min(prof percent,.2)*netprofit for your commision
    >
    > "daniel4214" wrote:
    >
    > >
    > > I am new here so please excuse any mistakes in this posting
    > >
    > > I wonder if anyone out there can help me with an Excel problem i am
    > > having....
    > >
    > > i want Excel to calculate a commission based on the following
    > > information the these columns:
    > >
    > > gross sales
    > > less expenses
    > > net profit
    > > % of profit
    > >
    > > commission
    > >
    > > the first part is easy and i can handle that...its the calculation of
    > > the commission that is giving me problems. The calculation of
    > > commissions is as follows:
    > >
    > > if the percentage of profit is 20% then that is the commission amount
    > > eg: 20% of the net profit
    > >
    > > if the percentage of profit is less than 20% then the commission amount
    > > is whatever that figure is: eg 19.8% times the net profit
    > >
    > > if the percentage of profit is more than 20% then the commission amount
    > > is 20% of the net profit. eg: percentage of profit is 21.3% then the
    > > commission is 20% of the net profit...
    > >
    > > if there is a loss (net profit greater than the sales) then the
    > > commission should reflect a negative percentage and therefore be
    > > deducted from any commissions due
    > >
    > > i think that covers all the possibilities
    > >
    > > Thanks in advance for any help you can give with this
    > >
    > > Bert Hayford
    > >
    > >
    > > --
    > > daniel4214
    > > ------------------------------------------------------------------------
    > > daniel4214's Profile: http://www.excelforum.com/member.php...o&userid=26931
    > > View this thread: http://www.excelforum.com/showthread...hreadid=401556
    > >
    > >


+ 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