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?
ArifUK
Feb 05, 2025Copper Contributor
Thank you. Any chance Residential after April 2025?
Muckeye
Mar 02, 2025Copper Contributor
This will do it (presuming your property price is in cell B1), and is more efficient than multiple nested IFs:
=IF(B1<=125000,0,MIN(125000,B1-125000)*2%+MAX(MIN(B1-250000,675000),0)*5%+MAX(MIN(B1-925000,575000),0)*10%+MAX(B1-1500000,0)*12%)
- goodleyhomeApr 23, 2025Copper Contributor
Muckeyethanks so much - legend