Real Estate Commission Calculator

duteberta

Board Regular
Joined
Jun 14, 2009
Messages
83
Office Version
  1. 365
Platform
  1. MacOS
Hello-

I am starting a new real estate brokerage and will be hiring real estate agents. I wish to pay the agents on a graduating commission split (the more the agent sells, the greater the % split). This plan is for any calendar year- then starts anew on January 1. For the purpose of this sheet, I only am concerned about the sales in 1 calendar year.

I would like to have a spreadsheet table that show one transaction side per row. Then shows the agent what their split is based on that transaction.

The splits would have two criteria: amount of total CUMULATIVE sales and whether the transaction was a BUY or LIST. It would be as follows:

Range of Cumu SalesBUYLIST
$1$4,999,99990%80%
$5,000,000$9,999,99991%82%
$10,000,000$14,999,99992%85%
$15,000,000$19,999,99995%90%
$20,000,000$999,999,99997%95%

<tbody>
</tbody>

The challenge for me is: what happens when a transaction crosses the threshold of one tier to the next. How does the agent get accurately compensated at the percentage below the threshold and increased percentage ABOVE the threshold?

So here is the spreadsheet as it stands now, what functions/formulas do I use for cells I11:I34?

Here is a link to spreadsheet- hope you can see it.

https://www.dropbox.com/s/3manz85z5krvmb9/compPLAN.xlsx?dl=0


Thanks
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
If these value are correct for cells I11, 12, 13, 14 then this formula in I11 and pull down...???

=IF(C11="BUY",VLOOKUP(D11,$A$3:$C$7,3,1),VLOOKUP(D11,$A$3:$D$7,4,1))*D11

Code:
[TABLE="width: 161"]
<tbody>[TR]
[TD] 256,122.00
[/TD]
[/TR]
[TR]
[TD] 148,000.00
[/TD]
[/TR]
[TR]
[TD] 44,800.00
[/TD]
[/TR]
[TR]
[TD] 322,200.00
[/TD]
[/TR]
</tbody>[/TABLE]

Howard

Or should the lookup cell be E11?

H
 
Last edited:
Upvote 0
Yes- I think the lookup is E11. Ultimately, I need to calculate the commission (not to total sales).

But the complexity comes when my agent crosses from one bracket to a higher bracket in one transaction.

So for instance:

Tammy is sitting at $4,850,000 in total sales. Tammy is the LIST agent. She then sells a $350,000 house.

So of that $350,000 - the first $150,000 is credited to her at 80% (getting her to the top of that 80% bracket). Then the remaining $200,000 would be credited to Tammy at the next bracket level of 82%. I know there is an Excel function that can handle this, but I don't know what it is.
 
Upvote 0
I believe you wouldn’t be able to do this by just using formula in Excel. Tiered commission calculation is based on different factors.For example, real estate companies usually only consider the annual sale and drop the tier of the agent at the end of the year. Also, not all of property transaction will be closed. How would you consider them in your calculation? Or every agent have their own tier table. There are some accounting software out there like https://bsuperiorsystem.com/product/commission_management/ which is perimary focsuing on real estate.
 
Upvote 0

Excel 2010
ABCDEFGH
1PriorJuneJulyBracket/ HurdleRateRate Differential
2Input amounts: Sales3,850,000.00500,000.001,000,000.00080%80%
35,000,00082%2%
4Sales allocation3,080,000.00400,000.00807,000.0010,000,00085%3%
515,000,00090%5%
6Total5,350,000.004,287,000.0020,000,00095%5%
7
9a
Cell Formulas
RangeFormula
H2=G2-N(G1)
B4=SUMPRODUCT(--(SUM($B$2:B2)>rB),SUM($B$2:B2)-rB,rDiff)-SUM($A$4:A4)
B6=SUM(B2:E2)
C4=SUMPRODUCT(--(SUM($B$2:C2)>rB),SUM($B$2:C2)-rB,rDiff)-SUM($A$4:B4)
C6=SUMPRODUCT(--(B6>rB),B6-rB,rDiff)
D4=SUMPRODUCT(--(SUM($B$2:D2)>rB),SUM($B$2:D2)-rB,rDiff)-SUM($A$4:C4)
Named Ranges
NameRefers ToCells
rB='9a'!$F$2:$F$6
rDiff='9a'!$H$2:$H$6
 
Upvote 0

Forum statistics

Threads
1,214,617
Messages
6,120,541
Members
448,970
Latest member
kennimack

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top