+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 15 of 16

Thread: Calculate commisson

  1. #1
    Registered User
    Join Date
    08-03-2011
    Location
    Greer, SC
    MS-Off Ver
    Excel 2007
    Posts
    8

    Calculate commisson

    I'm in Real Estate, I need help figuring out how to calculate agent commissions. Here is my issue:
    If a house sells for $100,000, we charge a 3% commission = $3000. The agent receives 50% of that commission = $1500 (so far I've managed this much) the problem I run in to is with what we call a Cap. From the $1500 the agent makes, we charge an additional 36% franchise fee = $540, until they have paid a total of $10,000 in Franchise fees, then we no longer charge the 36%. I tried a formula like this - =IF(H21<10000,H3*0.36,"0") where H21 was the sum of the cap paid and H3 was the commission for the sale, but once the H21 cell reaches $10,000, then all of my values on in the cap column revert to 0. Is there a cumulative method I can use? Or am I going about this all wrong? I've attached the Spreadsheet,, and any help would be greatly appreciated! Commissions1.xlsx
    Last edited by arthurbr; 08-30-2011 at 02:25 PM.

  2. #2
    Registered User
    Join Date
    08-03-2011
    Location
    Corpus Christi
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: Calculate commisson

    Quote Originally Posted by Jessica Rolfe View Post
    I'm in Real Estate, I need help figuring out how to calculate agent commissions. Here is my issue:
    If a house sells for $100,000, we charge a 3% commission = $3000. The agent receives 50% of that commission = $1500 (so far I've managed this much) the problem I run in to is with what we call a Cap. From the $1500 the agent makes, we charge an additional 36% franchise fee = $540, until they have paid a total of $10,000 in Franchise fees, then we no longer charge the 36%. I tried a formula like this - =IF(H21<10000,H3*0.36,"0") where H21 was the sum of the cap paid and H3 was the commission for the sale, but once the H21 cell reaches $10,000, then all of my values on in the cap column revert to 0. Is there a cumulative method I can use? Or am I going about this all wrong? I've attached the Spreadsheet,, and any help would be greatly appreciated! Attachment 117044
    Try using a "Cap left" column instead. This is the only way I could think of to avoid a circular reference. I modified your spreadsheet. Take a look at it.

    I think you'll like the way it works. Let me know if you need an explanation on any of the formulas.
    Attached Files Attached Files
    Last edited by seikowatchesusa; 08-03-2011 at 08:34 PM.
    -->Berto<--
    SeikoWatchesUSA.com

  3. #3
    Registered User
    Join Date
    04-18-2011
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    20

    Re: Calculate commisson

    I have added a new column franchise fee in order to calculate how much you have received and if the total goes above 10,000 it will stop to calculate the additional charge at 36% with message no charge. hope this helps !!!
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    08-03-2011
    Location
    Greer, SC
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: Calculate commisson

    Quote Originally Posted by seikowatchesusa View Post
    Try using a "Cap left" column instead. This is the only way I could think of to avoid a circular reference. I modified your spreadsheet. Take a look at it.

    I think you'll like the way it works. Let me know if you need an explanation on any of the formulas.
    This is great, thank you so much! I've just got one little issue, the Cap stops calculating at $9190 instead of $10,000? I can't figure out why? (I've added a referral column to this sheet from the original, based on what I learned from the changes you made. The table method is GREAT - so I've attached an updated copy)

    Thanks SO MUCH!
    Attached Files Attached Files
    Last edited by Jessica Rolfe; 08-04-2011 at 01:58 PM.

  5. #5
    Registered User
    Join Date
    08-03-2011
    Location
    Greer, SC
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: Calculate commisson

    Quote Originally Posted by nd4spd View Post
    I have added a new column franchise fee in order to calculate how much you have received and if the total goes above 10,000 it will stop to calculate the additional charge at 36% with message no charge. hope this helps !!!
    Thank you SOOOO MUCH! I can't believe how helpful everyone always is here! have a great day!
    Last edited by Jessica Rolfe; 08-04-2011 at 01:57 PM.

  6. #6
    Extremely Helpful member
    Join Date
    12-23-2006
    Location
    Belgium
    MS-Off Ver
    XL2003
    Posts
    6,127

    Re: Calculate commisson

    One step further would be to simply replace SUM(($H$3:$H$20)) with $H$21 which is the said sum ( or am I missing something?)
    Quoting entire posts clutters the forum and makes threads hard to read !

    If you are pleased with a member's answer then use the Star icon to rate it

    Click here to see forum rules

  7. #7
    Registered User
    Join Date
    08-03-2011
    Location
    Greer, SC
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: Calculate commisson

    I'm actually using seikowatchusa's version of the sheet -his doesn't have that calculation. He place the sheet in the table and the issue comes up with this calculation:
    =10000-G3*0.36 (this is on the third row, in the cap left column - rows one and two being the title and headers)

    =IF(H3-(G3*0.36)>0,H3-(G3*0.36),0) (This is the calculation for the rest of the cap left column)

    What's happening, is that cap column is basing it's decision on the number that is returned from the calculation on the third row, rather than $10,000

    Hope that makes sense?

  8. #8
    Registered User
    Join Date
    08-03-2011
    Location
    Corpus Christi
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: Calculate commisson

    If I understand correctly, all you have to do is change the I3 to 10k. Then you have to modify the cap column to
    =if([cap left]>g3*.36,g3*.36,[cap left])
    I think that is right. I'm on my cell phone with no access to excel, so please forgive me if it doesn't work. I'm doing the calculations off the top of my head. If it doesn't work, let me know, and I'll take a look at it again when I get to a computer.
    -->Berto<--
    SeikoWatchesUSA.com

  9. #9
    Registered User
    Join Date
    08-03-2011
    Location
    Corpus Christi
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: Calculate commisson

    Ok, I 'm back on a computer.

    Forget the formula. All you have to do is change I3 to $10,000. That should fix the problem.

    Let me know if you need any more help.

    If it works, don't forget to add to my reputation.
    -->Berto<--
    SeikoWatchesUSA.com

  10. #10
    Registered User
    Join Date
    08-03-2011
    Location
    Greer, SC
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: Calculate commisson

    @ seikowatchesusa

    Thanks! That fixed me Everything has been working perfectly, until today when I added two columns. (Concessions, and effective commission) they are fine, as are all of the other items I've made changes to, with the exception of the highlighted row in the attached sheet. The Referral percentage isn't calculating - it just returns a 0.

    Can you please help again?
    Thanks!
    Jessica
    Attached Files Attached Files
    Last edited by shg; 08-25-2011 at 01:34 PM. Reason: deleted quote

  11. #11
    Registered User
    Join Date
    08-03-2011
    Location
    Greer, SC
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: Calculate commisson

    bump....

    Thannks!

  12. #12
    Extremely Helpful member
    Join Date
    12-23-2006
    Location
    Belgium
    MS-Off Ver
    XL2003
    Posts
    6,127

    Re: Calculate commisson

    Why not use H3*G3 ?
    Quoting entire posts clutters the forum and makes threads hard to read !

    If you are pleased with a member's answer then use the Star icon to rate it

    Click here to see forum rules

  13. #13
    Registered User
    Join Date
    08-03-2011
    Location
    Greer, SC
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: Calculate commisson

    PERFECT!

    Thanks!

  14. #14
    Extremely Helpful member
    Join Date
    12-23-2006
    Location
    Belgium
    MS-Off Ver
    XL2003
    Posts
    6,127

    Re: Calculate commisson

    If you are satisfied with the solution(s) provided, please mark your thread as Solved.

    How to mark a thread Solved
    Go to the first post
    Click edit
    Click Go Advanced
    Just below the word Title you will see a dropdown with the word No prefix.
    Change to Solved
    Click Save
    Quoting entire posts clutters the forum and makes threads hard to read !

    If you are pleased with a member's answer then use the Star icon to rate it

    Click here to see forum rules

  15. #15
    Registered User
    Join Date
    08-03-2011
    Location
    Greer, SC
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: Calculate commisson

    Sorry arthurbr.... there is no edit option on my first post. The first post that allows me to edit is #10. I just came back to the site to add to your reputation

+ 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.2.0