Last active
August 5, 2025 19:42
-
-
Save timruffles/8e862862e873ccbeb291 to your computer and use it in GitHub Desktop.
google sheets - uk stamp duty calculator, new rate (2015)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// put this into a cell and then name a range 'housePrice' | |
=MIN(MAX(0,housePrice-250000),250000-125000)*0.02 + MIN(MAX(0,housePrice - 250000), 925000-250000) * 0.05 + MIN(MAX(0,housePrice - 9250000), 1500000-925000) * 0.1 |
This is the calculation from 1 March 2025 Onwards for additional properties.
in g sheet, create an
Apps Script
and reference it with=StampDuty(A1)
where A1 has the price of the house.function StampDuty(price) { if (price <= 125000) { return price * 0.05; } else if (price <= 250000) { return (125000 * 0.05) + ((price - 125000) * 0.07); } else if (price <= 925000) { return (125000 * 0.05) + (125000 * 0.07) + ((price - 250000) * 0.10); } else if (price <= 1500000) { return (125000 * 0.05) + (125000 * 0.07) + (675000 * 0.10) + ((price - 925000) * 0.15); } else { return (125000 * 0.05) + (125000 * 0.07) + (675000 * 0.10) + (575000 * 0.15) + ((price - 1500000) * 0.17); } }
This code didnt work for me, but this did:
function stampDuty(price) {
if (isNaN(price) || price <= 0) return "Invalid Price";
let tax = 0;
const bands = [
{ threshold: 1500000, rate: 0.12 },
{ threshold: 925000, rate: 0.10 },
{ threshold: 250000, rate: 0.05 },
{ threshold: 125000, rate: 0.02 },
{ threshold: 0, rate: 0.00 },
];
for (let i = 0; i < bands.length; i++) {
const band = bands[i];
if (price > band.threshold) {
tax += (price - band.threshold) * band.rate;
price = band.threshold;
}
}
return tax;
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is the calculation from 1 March 2025 Onwards for additional properties.
in g sheet, create an
Apps Script
and reference it with=StampDuty(A1)
where A1 has the price of the house.