Stamp Duty Calculator Uk Stamp Duty Rates

UK Stamp Duty Calculator (SDLT) 2024/2025 body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; max-width: 100%; margin: 0; padding: 0; } .sdlt-container { max-width: 800px; margin: 20px auto; padding: 20px; background: #f9f9f9; border: 1px solid #e1e1e1; border-radius: 8px; } .sdlt-calculator-wrapper { background: #ffffff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); border: 1px solid #dcdcdc; } .sdlt-header { text-align: center; margin-bottom: 25px; } .sdlt-header h2 { color: #002D62; /* British Royal Blueish */ margin: 0; font-size: 24px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #444; } .input-wrapper { position: relative; } .currency-symbol { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #666; font-weight: bold; } .sdlt-input { width: 100%; padding: 12px 12px 12px 30px; font-size: 16px; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; transition: border-color 0.3s; } .sdlt-select { width: 100%; padding: 12px; font-size: 16px; border: 1px solid #ccc; border-radius: 6px; background-color: white; box-sizing: border-box; } .sdlt-input:focus, .sdlt-select:focus { border-color: #002D62; outline: none; } .checkbox-group { display: flex; align-items: center; gap: 10px; margin-top: 10px; } .checkbox-group input[type="checkbox"] { width: 18px; height: 18px; } .calc-btn { width: 100%; padding: 14px; background-color: #C8102E; /* UK Red */ color: white; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .calc-btn:hover { background-color: #a30d25; } .result-box { margin-top: 25px; padding: 20px; background-color: #f0f4f8; border-radius: 8px; border-left: 5px solid #002D62; display: none; } .result-row { display: flex; justify-content: space-between; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #ddd; } .result-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .result-label { color: #555; } .result-value { font-weight: bold; color: #002D62; font-size: 18px; } .result-total { font-size: 24px; color: #C8102E; } .sdlt-content { margin-top: 40px; font-family: inherit; } .sdlt-content h2 { color: #002D62; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 30px; } .sdlt-content h3 { color: #444; margin-top: 20px; } .sdlt-content ul { padding-left: 20px; } .sdlt-content li { margin-bottom: 8px; } .highlight-box { background: #fff3cd; border: 1px solid #ffeeba; padding: 15px; border-radius: 6px; margin: 20px 0; } @media (max-width: 600px) { .sdlt-container { padding: 10px; } .sdlt-calculator-wrapper { padding: 20px; } }

Stamp Duty Land Tax (SDLT) Calculator

Calculate SDLT for residential property in England & Northern Ireland.

£
Next Home (Moving House) First Time Buyer Additional Property (Buy-to-Let / Second Home)
Property Price: £0
Effective Tax Rate: 0%
Total Stamp Duty Due: £0

Understanding Stamp Duty Land Tax (SDLT) Rates in 2024/25

Stamp Duty Land Tax (SDLT) is a lump-sum tax that you must pay if you buy a property or land in England and Northern Ireland over a certain price threshold. The rates vary significantly depending on whether you are a first-time buyer, moving home, or purchasing an additional property.

Note: This calculator applies to properties in England and Northern Ireland. Scotland uses Land and Buildings Transaction Tax (LBTT) and Wales uses Land Transaction Tax (LTT).

Current Standard Rates (Next Home)

For those replacing their primary residence or moving home, the following tiered rates apply to the purchase price:

  • £0 to £250,000: 0% (Nil Rate)
  • £250,001 to £925,000: 5%
  • £925,001 to £1,500,000: 10%
  • Over £1.5 million: 12%

First Time Buyers Relief

The government offers specific relief to help people get on the property ladder. If you, and anyone else you are buying with, are first-time buyers:

  • £0 to £425,000: 0%
  • £425,001 to £625,000: 5% on the portion above £425,000

Crucial Rule: If the purchase price exceeds £625,000, you lose First Time Buyer relief entirely and must pay the standard rates on the full amount.

Additional Properties and Buy-to-Let

If you are purchasing a second home, a holiday home, or a buy-to-let investment property, you will pay a 3% surcharge on top of the standard rates. This applies to the entire purchase price if the property costs more than £40,000.

  • £0 – £250,000: 3%
  • £250,001 – £925,000: 8%
  • £925,001 – £1,500,000: 13%
  • Over £1.5m: 15%

Non-UK Resident Surcharge

Since 1 April 2021, a 2% surcharge applies to non-UK residents purchasing residential property in England and Northern Ireland. This creates a potential maximum top rate of 17% (12% standard + 3% additional home + 2% non-resident).

When must Stamp Duty be paid?

You have 14 days from the date of completion (when you get the keys) to file the SDLT return and pay the tax. Usually, your solicitor or conveyancer will handle this on your behalf, but it is legally your responsibility to ensure it is paid.

function calculateSDLT() { // 1. Get Inputs var priceInput = document.getElementById('propertyPrice'); var buyerTypeSelect = document.getElementById('buyerType'); var nonResidentCheck = document.getElementById('nonResident'); var resultBox = document.getElementById('resultBox'); var price = parseFloat(priceInput.value); var buyerType = buyerTypeSelect.value; var isNonResident = nonResidentCheck.checked; // Validation if (isNaN(price) || price < 0) { alert("Please enter a valid property price."); return; } var totalTax = 0; var surcharge = 0; // 2. Determine Base Surcharges // Additional Home Surcharge: 3% if (buyerType === 'additional') { surcharge += 0.03; } // Non-Resident Surcharge: 2% if (isNonResident) { surcharge += 0.02; } // 3. Calculation Logic // — FIRST TIME BUYER LOGIC — // FTB Relief applies if price <= 625,000 AND buyer is FTB AND not buying additional property (though usually mutually exclusive options in UI, logic handles it) if (buyerType === 'ftb' && price <= 625000) { // Band 1: 0 – 425k var band1Top = 425000; // Calculate Tax if (price <= band1Top) { totalTax = price * surcharge; // Just surcharges if any (though FTB usually 0 surcharge unless non-resident) } else { // First 425k at surcharge rate totalTax += 425000 * surcharge; // Remainder at 5% + surcharge totalTax += (price – 425000) * (0.05 + surcharge); } } // — STANDARD / ADDITIONAL / FTB OVER 625k LOGIC — else { // If FTB buys over 625k, they pay standard rates. // Standard Bands: // 0 – 250k: 0% (+ surcharge) // 250k – 925k: 5% (+ surcharge) // 925k – 1.5m: 10% (+ surcharge) // 1.5m+: 12% (+ surcharge) var band1 = 250000; var band2 = 925000; var band3 = 1500000; // Band 1 (0 – 250k) if (price <= band1) { totalTax += price * (0 + surcharge); } else { totalTax += band1 * (0 + surcharge); // Band 2 (250k – 925k) if (price <= band2) { totalTax += (price – band1) * (0.05 + surcharge); } else { totalTax += (band2 – band1) * (0.05 + surcharge); // Band 3 (925k – 1.5m) if (price 0) { effectiveRate = (totalTax / price) * 100; } // 5. Display document.getElementById('resPrice').innerText = "£" + price.toLocaleString('en-GB'); document.getElementById('resRate').innerText = effectiveRate.toFixed(2) + "%"; document.getElementById('resTotal').innerText = "£" + totalTax.toLocaleString('en-GB'); resultBox.style.display = "block"; }

Leave a Comment