How Are Business Rates Calculated Uk

UK Business Rates Calculator (2024/25)

This is the value assigned to your property by the VOA.
England

Calculation Results


function calculateBusinessRates() { var rv = parseFloat(document.getElementById('rateableValue').value); var resultsDiv = document.getElementById('resultsArea'); if (isNaN(rv) || rv < 0) { alert("Please enter a valid Rateable Value."); return; } // 2024/25 England Multipliers var smallMultiplier = 0.499; var standardMultiplier = 0.546; var threshold = 51000; var multiplier = (rv < threshold) ? smallMultiplier : standardMultiplier; var grossBill = rv * multiplier; var reliefAmount = 0; var reliefMessage = "Small Business Rate Relief: None"; // Small Business Rate Relief (SBRR) Logic for England if (rv 12000 && rv <= 15000) { // Tapered relief: 100% at 12k down to 0% at 15k var reliefPercentage = (15000 – rv) / 3000; reliefAmount = grossBill * reliefPercentage; reliefMessage = "Small Business Rate Relief: " + (reliefPercentage * 100).toFixed(1) + "% (Tapered)"; } var netBill = grossBill – reliefAmount; document.getElementById('multiplierUsed').innerHTML = "Multiplier Used: " + multiplier + " (" + (rv < threshold ? "Small Business" : "Standard") + ")"; document.getElementById('grossBill').innerHTML = "Gross Annual Bill: £" + grossBill.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('reliefApplied').innerHTML = reliefMessage + " (-£" + reliefAmount.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) + ")"; document.getElementById('finalBill').innerHTML = "Estimated Net Annual Bill: £" + netBill.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); resultsDiv.style.display = 'block'; }

Understanding How Business Rates are Calculated

Business rates are a tax on properties used for non-domestic purposes, such as shops, offices, pubs, and warehouses. In the UK, the calculation is primarily based on the property's "Rateable Value" (RV), which is determined by the Valuation Office Agency (VOA).

1. The Rateable Value (RV)

The Rateable Value is the VOA's estimate of the open market rental value of the property on a specific date. As of April 1, 2023, the current rateable values are based on property market values from April 1, 2021.

2. The Multiplier (Poundage)

The government sets a "multiplier" each year, which is the number of pence per pound of rateable value that you must pay. For the 2024/25 tax year in England:

  • Small Business Multiplier: 49.9p (0.499) – Applies to properties with an RV below £51,000.
  • Standard Multiplier: 54.6p (0.546) – Applies to properties with an RV of £51,000 or more.

3. Small Business Rate Relief (SBRR)

Small businesses can significantly reduce their bill if they only use one property:

  • RV of £12,000 or less: You get 100% relief (you pay nothing).
  • RV between £12,001 and £15,000: Relief is tapered gradually from 100% down to 0%.

Calculation Example

Imagine you have a small shop with a Rateable Value of £13,500.

  1. Initial Bill: £13,500 x 0.499 (Small Multiplier) = £6,736.50.
  2. Relief Calculation: Since £13,500 is exactly in the middle of the taper range (£12k-£15k), you receive 50% relief.
  3. Final Bill: £6,736.50 – 50% = £3,368.25.

Other Reliefs and Exemptions

Beyond SBRR, businesses may qualify for other discounts:

  • Retail, Hospitality, and Leisure Relief: Currently offers a 75% discount for eligible properties (up to a cash cap).
  • Charitable Rate Relief: Charities and community amateur sports clubs can get up to 80% relief.
  • Transitional Relief: Limits how much your bill can change each year following a revaluation.
  • Empty Property Relief: You don't pay business rates on empty buildings for the first 3 months (6 months for industrial).

Note: This calculator provides an estimate for England. Rates in Scotland (Basic Property Rate), Wales, and Northern Ireland are calculated using different multipliers and relief structures. Always check with your local council for your official bill.

Leave a Comment