Pro Rata Pay Calculator Uk

.pro-rata-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e0e0e0; border-radius: 8px; background-color: #f9f9f9; color: #333; line-height: 1.6; } .pro-rata-calculator { background: #ffffff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); margin-bottom: 30px; } .pro-rata-container h2 { color: #1a1a1a; margin-top: 0; border-bottom: 2px solid #005ea5; padding-bottom: 10px; } .input-group { margin-bottom: 15px; } .input-group label { display: block; font-weight: bold; margin-bottom: 5px; color: #444; } .input-group input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px; } .calc-button { background-color: #005ea5; color: white; padding: 12px 20px; border: none; border-radius: 4px; cursor: pointer; font-size: 18px; font-weight: bold; width: 100%; transition: background-color 0.3s; } .calc-button:hover { background-color: #003a6b; } #proRataResult { margin-top: 20px; padding: 15px; background-color: #e7f3ff; border-left: 5px solid #005ea5; border-radius: 4px; } .pro-rata-article h3 { color: #005ea5; margin-top: 25px; } .example-box { background-color: #fffbe6; border: 1px solid #ffe58f; padding: 15px; border-radius: 4px; margin: 15px 0; }

Pro Rata Pay Calculator UK

What is Pro Rata Pay?

In the UK, "pro rata" is a Latin term meaning "in proportion." When an employer offers a salary on a pro rata basis, it means the amount quoted is the Full-Time Equivalent (FTE) salary. If you work fewer hours than a standard full-time employee, your actual take-home pay is adjusted proportionally to match the hours you actually work.

This is most common for part-time roles, job shares, or employees starting or leaving a company partway through a pay period.

How to Calculate Pro Rata Salary

The calculation for pro rata pay is relatively straightforward. You take the full-time salary, divide it by the full-time hours, and then multiply it by the hours you actually work.

The Formula:
(Annual Full-Time Salary ÷ Full-Time Hours) × Actual Hours Worked = Your Pro Rata Salary

Practical Example

Imagine a job is advertised with a salary of £35,000 per year based on a 40-hour week. However, you only work 22.5 hours per week. Your calculation would look like this:

  • £35,000 ÷ 40 hours = £875 (This is your pay per weekly hour)
  • £875 × 22.5 hours = £19,687.50

Your actual gross annual pro rata salary would be £19,687.50.

Pro Rata and Holiday Entitlement

It is important to note that if you work pro rata, your holiday entitlement is also calculated proportionally. In the UK, the statutory minimum is 5.6 weeks of paid holiday. For a full-time worker doing 5 days a week, this is 28 days. If you work 2.5 days a week, you would be entitled to 14 days of holiday (2.5 days × 5.6).

Key Terms to Know

  • Gross Pay: Your total pay before Tax, National Insurance, and pension contributions.
  • FTE (Full-Time Equivalent): A unit that indicates the workload of an employed person in a way that makes workloads comparable across various contexts.
  • Contractual Hours: The fixed number of hours you are legally required to work as per your employment contract.
function calculateProRataSalary() { var fullTimeSalary = parseFloat(document.getElementById('fullTimeSalary').value); var standardHours = parseFloat(document.getElementById('standardHours').value); var actualHours = parseFloat(document.getElementById('actualHours').value); var resultDiv = document.getElementById('proRataResult'); // Validation if (isNaN(fullTimeSalary) || fullTimeSalary <= 0) { resultDiv.style.display = 'block'; resultDiv.innerHTML = 'Please enter a valid annual salary.'; return; } if (isNaN(standardHours) || standardHours <= 0) { resultDiv.style.display = 'block'; resultDiv.innerHTML = 'Please enter standard full-time hours (e.g., 37.5).'; return; } if (isNaN(actualHours) || actualHours < 0) { resultDiv.style.display = 'block'; resultDiv.innerHTML = 'Please enter your actual hours worked.'; return; } // Calculations var annualProRata = (fullTimeSalary / standardHours) * actualHours; var monthlyProRata = annualProRata / 12; var weeklyProRata = annualProRata / 52.1429; // Accurate weeks in a year var dailyProRata = weeklyProRata / (actualHours / (actualHours / 5)); // Estimate based on 5 day equivalent // Output formatting var output = '

Your Pro Rata Breakdown

'; output += ''; output += ''; output += ''; output += ''; output += '
Annual Pro Rata Salary:£' + annualProRata.toLocaleString('en-GB', {minimumFractionDigits: 2, maximumFractionDigits: 2}) + '
Monthly Gross Pay:£' + monthlyProRata.toLocaleString('en-GB', {minimumFractionDigits: 2, maximumFractionDigits: 2}) + '
Weekly Gross Pay:£' + weeklyProRata.toLocaleString('en-GB', {minimumFractionDigits: 2, maximumFractionDigits: 2}) + '
'; output += '*Calculations are gross figures before Tax and National Insurance. Weekly figures based on 52.14 weeks per year.'; resultDiv.style.display = 'block'; resultDiv.innerHTML = output; }

Leave a Comment