Forum Discussion
Pat_Burrows1970
Oct 04, 2022Copper Contributor
Stamp Duty Calculation
Hello, I have a SUMPRODUCT formula to calculate stamp duty in the UK below where F2 = the purchase price of a property. =SUMPRODUCT(--(F2>{0;250000;925000;1500000}),(F2-{0;250000;925000;1500...
- Oct 04, 2022
=IF(F2<40000,0,SUMPRODUCT(--(F2>{0;250000;925000;1500000}),(F2-{0;250000;925000;1500000}),{0.03;0.05;0.05;0.02}))
Does this return the expected result?
OliverScheurich
Oct 04, 2022Gold Contributor
=IF(F2<40000,0,SUMPRODUCT(--(F2>{0;250000;925000;1500000}),(F2-{0;250000;925000;1500000}),{0.03;0.05;0.05;0.02}))
Does this return the expected result?
- andysw90Mar 22, 2023Copper Contributor
If anyone comes across this thread more recently, rates have now changed...
=IF(B4<40000,0,SUMPRODUCT(--(B4>{0;250000;925000;1500000}),(B4-{0;250000;925000;1500000}),{0;0.05;0.1;0.12}))
- UmairzhMar 02, 2024Copper Contributor
The correct formula incorporating rates as of March 2024 is as follows;
=SUMPRODUCT(--(F8>{0;250000;925000;1500000}),(F8-{0;250000;925000;1500000}),({0;0.05;0.05;0.07}))
Note, the rates are incremental so for although its 10% SDLT from £925k to £1.5m, we have to use 5% increment over the previous tier.
- TomS635Feb 15, 2025Copper Contributor
Absolute legend thank you
- DaveK1969Oct 30, 2023Copper ContributorVery useful - thank you!
- Pat_Burrows1970Oct 04, 2022Copper Contributor
- OliverScheurichOct 04, 2022Gold ContributorYou are welcome.