Stamp Duty Calculator

sblatch

New Member
Joined
Jan 14, 2014
Messages
2
I want to be able to calculate the UK Stamp Duty on land purchases using an Excel formula. Shown below is the current rates.

Purchase price/lease premium or transfer value​
SDLT rate​
Up to £125,000​
Zero​
Over £125,000 to £250,000​
1%​
Over £250,000 to £500,000​
3%​
Over £500,000 to £1 million​
4%​
Over £1 million to £2 million​
5%​
Over £2 million7%

<thead style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "> </thead><tbody style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">
</tbody>
As you can see there are various rates, which are applicable to the whole value. i.e.
If the land is worth £270,000 the stamp duty would be 3% which would need to be shown. This would then be calculated. C1 "3%" and D1 "£90,000"

I am sure this can be done but is beyond my basic knowledge.

Any help would be appreciated.

:)
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
add it in row 1

Code:
=IF(A1<=125000,0,IF(AND(A1>125000,A1<=250000),A1*1%,IF(AND(A1>250000,A1<=500000),A1*3%,IF(AND(A1>500000,A1<=1000000),A1*4%,IF(AND(A1>1000000,A1<=2000000),A1*5%,IF(A1>2000000,A1*7%,""))))))
 
Upvote 0
Thanks skorpionkz for amazingly quick response. Simple now I've seen it, but I didn't have a clue where to start. Nesting the if statement makes for a powerful option.
 
Upvote 0
skorpionkz

Great formula - I am trying to update it as a result of the change in UK Stamp Duty announced 3rd December 2014 but keep getting an error message - I copied and modified the formula you provided but obviously got one bit wrong.

The new rates are


Up to £125,000 : 0%
£125,001 to £250,000 : 2%
£250,001 to £925,000 : 5%
£925,001 to £1.5m : 10%
Above £1.5m : 12%
 
Upvote 0
Up to £125,000 : 0%
£125,001 to £250,000 : 2%
£250,001 to £925,000 : 5%
£925,001 to £1.5m : 10%
Above £1.5m : 12%
10
1250010.02
2500010.05
9250010.1
150000010.12
9999999990.12
priceduty
770000aaaaa
1220000
1670003340
2120004240
25700012850
30200015100
34700017350
39200019600
43700021850
48200024100
52700026350
57200028600
61700030850
66200033100
70700035350
75200037600
79700039850
84200042100
88700044350
93200093200
1300000130000
1700000170000
5000000500000
9900000011880000
formula in cell marked aaaaa
=VLOOKUP(E16,mytable,2)*E16

<colgroup><col span="12"><col><col span="3"></colgroup><tbody>
</tbody>
 
Upvote 0
Thanks for your reply - I tried it and I don't think it is quite right - the new Stamp Duty Regime means the first £125,000.00 is exempt and the bands operate a bit like the tax rate, you only pay the higher rate on the value above the band not on the entire sum. So a value of 126000 would have a liability of £1000 at the band rate, a property of 255000 value would have £125000 liable to the rate of 2% and £5000 liable to the rate of 5%.
 
Upvote 0
Domster,

The solution in the other post was this: =SUMPRODUCT(--(A1>{125000;250000;925000;1500000}), (A1-{125000;250000;925000;1500000}), {0.02;0.03;0.05;0.02}) Answer was curtesy of MARK858.
Note the rates at the end are marginal interest rates, and A1 is the location of the property value for which SD is to be calculated.
 
Upvote 0
Domster62 , not sure which post you are referring to in post #7 but the results (and breakdown) for 255000 using the formula I posted is below.

Excel Workbook
ACD
12550002750
2
31250001st 125000 @ 0%0
4125000next 125000 @ 2%2500
55000next 5000 @ 5%250
6Total 2750
Sheet3


and a comparison with the results oldbrewer got is below.

Excel Workbook
ACD
14oldbrewerMARK858
1512200000
161670003340840
1721200042401740
18257000128502850
19302000151005100
20347000173507350
21392000196009600
224370002185011850
234820002410014100
245270002635016350
255720002860018600
266170003085020850
276620003310023100
287070003535025350
297520003760027600
307970003985029850
318420004210032100
328870004435034350
339320009320036950
34130000013000073750
351700000170000117750
365000000500000513750
37990000001188000011793750
Sheet3
 
Upvote 0

Forum statistics

Threads
1,216,220
Messages
6,129,583
Members
449,520
Latest member
TBFrieds

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