<html>
<head>
<script type="text/javascript"> window.addEventListener('error', function(event) { var message = JSON.parse(JSON.stringify(event.message)); var source = event.filename; var lineno = event.lineno; var colno = event.colno; var error = event.error; window.parent.postMessage({ type: 'iframeError', details: { message: message, source: source, lineno: lineno, colno: colno, error: error ? error.stack : '' } }, '*'); }); window.addEventListener('unhandledrejection', function(event) { window.parent.postMessage({ type: 'iframePromiseRejection', details: { reason: event.reason } }, '*'); }); </script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Advanced Accountancy Services Fee Calculator - ASN Partners</title>
<meta name="description" content="Calculate your fees for various accountancy services including payroll, VAT returns, and property accounts with ASN Partners. Get accurate estimates now!">
<meta name="keywords" content="Accountancy Services, Fee Calculator, Payroll, VAT, Properties, ASN Partners, Financial Services, Fees, Pensions">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(120deg, #f6d365, #fda085);
color: #3f4346;
margin: 0;
}
header, .service-fields, .calculation-summary {
text-align: center;
padding: 20px;
margin: 10px auto;
width: 90%;
background: rgba(255, 255, 255, 0.85);
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
h1, h2, h3 {
margin: 0;
color: #d77f10;
}
.service-fields {
display: none;
}
.btn-custom {
background-color: #fda085;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
color: #fff;
}
.btn-custom:hover {
background-color: #f6d365;
}
.form-control, .form-select {
width: 100%;
max-width: 320px;
margin: 10px auto;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
.calculation-value {
font-weight: bold;
}
</style>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function() {
const services = {
"Accounts & Tax": {
fees: {
"Sole Trader": [700, 850, 900, 1000, 1300, 1400, 1600, 1800, 2000, "Negotiable"],
"Limited Company": [875, 975, 1100, 1250, 1500, 1600, 1800, 2000, "Negotiable"]
},
turnoverDropdown: ["£0 – £90k", "£91k – £99k", "£100k – £149k", "£150k – £249k", "£250k – £349k", "£350k – £499k", "£500k – £749k", "£750k – £999k", "£1m+"]
},
"Payroll": {
frequencyDropdown: ["Weekly", "Fortnight", "Monthly"],
employeesDropdown: ["1-5", "6-10", "11-15", "16-20", "21-30", "31-40", "41-50", "51+"],
fees: {
Weekly: [520, 580, 675, 820, 1085, 1350, 1640, 1880],
Fortnight: [420, 490, 575, 700, 950, 1100, 1325, 1500],
Monthly: [350, 400, 450, 550, 665, 780, 940, 1100]
}
},
"VAT Returns": {
fees: [
550, 750, 850, 950, 1150, 1600, 1900,
2300, 2500, 2700, 2900, 3100, 3300,
3700, 4100, 4500, "Negotiable"
],
turnoverDropdown: [
"Up to £99k","£100k – £149k","£150k – £249k",
"£250k – £349k","£350k – £499k","£500k – £749k",
"£750k – £999k","£1m – £1.2m","£1.3m – £1.7m",
"£1.8m – £2.2m","£2.3m – £2.99m","£3m – £3.49m",
"£3.5m – £3.99m","£4.9m – £5.99m","Above £6m",
"Negotiable"
]
}
};
const setDropdownOptions = (selector, options) => {
const selectElem = document.querySelector(selector);
selectElem.innerHTML = '';
options.forEach(option => {
const opt = document.createElement('option');
opt.value = option;
opt.innerHTML = option;
selectElem.appendChild(opt);
});
};
document.querySelectorAll('.service-toggle').forEach(toggle => {
toggle.addEventListener('change', function() {
const service = this.getAttribute('data-service');
const fieldsContainer = document.getElementById('fields-' + service.replace(/\s+/g, ''));
fieldsContainer.style.display = this.checked ? "block" : "none";
if (this.checked) {
if (services[service].turnoverDropdown) {
setDropdownOptions(`#${service.replace(/\s+/g, '')}-turnover`, services[service].turnoverDropdown);
} else if (services[service].frequencyDropdown) {
setDropdownOptions(`#${service.replace(/\s+/g, '')}-frequency`, services[service].frequencyDropdown);
}
if (services[service].employeesDropdown) {
setDropdownOptions(`#${service.replace(/\s+/g, '')}-employees`, services[service].employeesDropdown);
}
}
});
});
document.querySelectorAll('.dropdown-calculation').forEach(dropdown => {
dropdown.addEventListener('change', calculateFees);
});
function calculateFees() {
let totalFee = 0;
const accountsToggle = document.querySelector(`input[data-service="Accounts & Tax"]`);
if(accountsToggle.checked){
const type = document.querySelector('input[name="type"]:checked').value;
const turnoverSelected = document.getElementById('AccountTax-turnover').value;
if(turnoverSelected){
const feesArray = type === "Sole Trader" ? services["Accounts & Tax"].fees.Sole Trader :
services["Accounts & Tax"].fees["Limited Company"];
totalFee += feesArray[services["Accounts & Tax"].turnoverDropdown.indexOf(turnoverSelected)];
}
}
const payrollToggle = document.querySelector(`input[data-service="Payroll"]`);
if(payrollToggle.checked){
const frequencySelected = document.getElementById('Payroll-frequency').value;
const employeesSelected = document.getElementById('Payroll-employees').value.split('-')[0];
if(frequencySelected){
const feesArray = services["Payroll"].fees[frequencySelected];
totalFee += feesArray[parseInt(employeesSelected)-1] || 0;
}
}
const vatToggle = document.querySelector(`input[data-service="VAT Returns"]`);
if(vatToggle.checked){
const turnoverSelected = document.getElementById('VAT-turnover').value;
if(turnoverSelected){
totalFee += services["VAT Returns"].fees[services["VAT Returns"].turnoverDropdown.indexOf(turnoverSelected)] || 0;
}
}
document.getElementById('annualAmount').innerText = "£" + totalFee.toFixed(2);
}
document.getElementById('resetAll').addEventListener('click', function() {
document.querySelectorAll('input[type="checkbox"]').forEach(checkbox => checkbox.checked = false);
document.querySelectorAll('.service-fields').forEach(serviceFields => serviceFields.style.display = 'none');
document.getElementById('annualAmount').innerText = "£0.00";
});
document.getElementById('print').addEventListener('click', function() {
window.print();
});
});
</script>
<link rel="canonical" href="https://calculator.tools/app/accountancy-services-fee-calculator-asn-partners-1554/">
<meta charset="utf-8">
</head>
<body>
<header>
<h1>ASN Partners</h1>
<h2>Advanced Accountancy Services Fee Calculator</h2>
</header>
<div>
<h3>Select Your Services:</h3>
${Object.keys(services).map(service => `
<label>
<input type="checkbox" class="service-toggle" data-service="${service}">
${service}
</label>
<div id="fields-${service.replace(/\s+/g, '')}" class="service-fields">
${service === "Accounts & Tax" ? `
<label>
<input type="radio" name="type" value="Sole Trader" checked>Sole Trader
</label>
<label>
<input type="radio" name="type" value="Limited">Limited Company
</label>
<select class="form-select dropdown-calculation" id="AccountTax-turnover">
<option disabled selected>Select Turnover</option>
</select>
` : ``}
${service === "Payroll" ? `
<select class="form-select dropdown-calculation" id="Payroll-frequency">
<option disabled selected>Select Frequency</option>
</select>
<select class="form-select dropdown-calculation" id="Payroll-employees">
<option disabled selected>Select Employee Count</option>
</select>
` : ``}
${service === "VAT Returns" ? `
<select class="form-select dropdown-calculation" id="VAT-turnover">
<option disabled selected>Select Turnover</option>
</select>
` : ``}
</div>
`).join('')}
</div>
<div class="calculation-summary">
<h3>Total Fees Summary</h3>
<div>Annual Amount: <span id="annualAmount">£0.00</span></div>
<button id="resetAll" class="btn-custom">Reset All</button>
<button id="print" class="btn-custom">Print</button>
</div>
<script type="text/javascript"> var localStoragePrefix = "ct-1554"; var lastSave = 0; function saveLocal(data) { if (Date.now() - lastSave < 1000) { return; } let cookie = localStoragePrefix + "=" + JSON.stringify(data) + "; path=" + window.location.pathname + "'; SameSite=Strict"; cookie += "; expires=" + new Date(Date.now() + 1000 * 60 * 60 * 24 * 365 * 1000).toUTCString(); document.cookie = cookie; lastSave = Date.now(); } function loadLocal() { var cookiePrefix = localStoragePrefix + "="; var cookieStart = document.cookie.indexOf(cookiePrefix); if (cookieStart > -1) { let cookieEnd = document.cookie.indexOf(";", cookieStart); if (cookieEnd == -1) { cookieEnd = document.cookie.length; } var cookieData = document.cookie.substring(cookieStart + cookiePrefix.length, cookieEnd); return JSON.parse(cookieData); } } </script>
<script type="text/javascript"> window.addEventListener('load', function() { var observer = new MutationObserver(function() { window.parent.postMessage({height: document.documentElement.scrollHeight || document.body.scrollHeight},"*"); }); observer.observe(document.body, {attributes: true, childList: true, subtree: true}); window.parent.postMessage({height: document.documentElement.scrollHeight || document.body.scrollHeight},"*"); }); </script>
</body>
</html>
These are apps made by the community!
Calculator Tools allows you to instantly create and generate any simple one page web app for
free and immediately have it online to use and share. This means anything! Mini apps,
calculators, trackers, tools, games, puzzles, screensavers... anything you can think of that the
AI can handle.
The AI uses Javacript, HTML, and CSS programming to code your app up in moments. This currently
uses GPT-4 the latest and most powerful version of the OpenAI GPT language model.
Have you ever just wanted a simple app but didn't want to learn programming or pay someone to
make it for you? Calculator Tools is the solution! Just type in your prompt and the AI will
generate a simple app for you in seconds. You can then customize it to your liking and share it
with your friends.
AI has become so powerful it is that simple these days.
It uses GPT-4 which is the most powerful model for ChatGPT.
Calculator Tools does not remember things from prompt to prompt, each image is a unique image
that does not reference any of the images or prompts previously supplied.