Estimated Rates Payable:
£0.00
Understanding Rates Payable
Business rates are a tax on non-domestic properties (like offices, shops, factories, and pubs) in England and Wales. The amount you pay is calculated using the property's 'rateable value' and a 'multiplier' set by the government.
Rateable Value: This is an estimate of the property's annual rental value on the open market, assessed by the Valuation Office Agency (VOA). It's not your rent or council tax valuation.
Rates Multiplier: This is a figure set annually by the government. For the financial year 2023-2024, there are two multipliers: the standard multiplier and the small business multiplier. The small business multiplier is lower to support smaller businesses.
Calculation: The basic calculation is:
Rates Payable = Rateable Value × Rates Multiplier
It's important to note that the multiplier is usually expressed in pence per pound of rateable value. Our calculator assumes you input the multiplier in this format.
Important Note: This calculator provides an estimate. Actual rates payable can be affected by various reliefs, such as small business rate relief, rural rate relief, charitable rate relief, and transitional arrangements. Always consult your local council for the precise amount you need to pay.
function calculateRates() {
var rateableValue = parseFloat(document.getElementById("rateableValue").value);
var ratesMultiplier = parseFloat(document.getElementById("ratesMultiplier").value);
var payableAmountElement = document.getElementById("payableAmount");
if (isNaN(rateableValue) || isNaN(ratesMultiplier)) {
payableAmountElement.innerText = "Please enter valid numbers for both fields.";
return;
}
if (rateableValue < 0 || ratesMultiplier < 0) {
payableAmountElement.innerText = "Values cannot be negative.";
return;
}
// The rates multiplier is typically in pence per pound, so we divide by 100 to get the actual monetary value
var payableAmount = (rateableValue * (ratesMultiplier / 100));
payableAmountElement.innerText = "£" + payableAmount.toFixed(2);
}
.calculator-wrapper {
font-family: Arial, sans-serif;
border: 1px solid #ddd;
padding: 20px;
border-radius: 8px;
max-width: 700px;
margin: 20px auto;
background-color: #f9f9f9;
}
.calculator-inputs, .calculator-result, .calculator-explanation {
margin-bottom: 25px;
padding: 15px;
background-color: #fff;
border: 1px solid #eee;
border-radius: 5px;
}
.calculator-inputs h2, .calculator-result h3 {
margin-top: 0;
color: #333;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
font-weight: bold;
color: #555;
}
.form-group input[type="number"] {
width: calc(100% – 22px);
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.calculator-inputs button {
background-color: #4CAF50;
color: white;
padding: 10px 15px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
.calculator-inputs button:hover {
background-color: #45a049;
}
#payableAmount {
font-size: 24px;
font-weight: bold;
color: #d9534f;
margin-top: 10px;
}
.calculator-explanation p {
line-height: 1.6;
color: #444;
}
.calculator-explanation code {
background-color: #f0f0f0;
padding: 2px 5px;
border-radius: 3px;
}