Calculating Pro Rata Holidays

Pro Rata Holiday Entitlement Calculator

Total leave a full-time employee gets per year (including bank holidays if applicable).
The number of hours a full-time staff member works at your company.
The number of hours you work per week.

Calculation Result

Your pro rata holiday entitlement is:

function calculateProRataHoliday() { var ftLeave = parseFloat(document.getElementById('ftLeave').value); var ftHours = parseFloat(document.getElementById('ftWeeklyHours').value); var ptHours = parseFloat(document.getElementById('ptWeeklyHours').value); var resultContainer = document.getElementById('holidayResult'); var resultDisplay = document.getElementById('resultDisplay'); var resultUnit = document.getElementById('resultUnit'); if (isNaN(ftLeave) || isNaN(ftHours) || isNaN(ptHours) || ftHours <= 0) { alert('Please enter valid positive numbers for all fields.'); return; } // Formula: (Actual Hours / Full Time Hours) * Full Time Leave var calculation = (ptHours / ftHours) * ftLeave; // Round to 2 decimal places for precision var finalResult = Math.round(calculation * 100) / 100; resultDisplay.innerText = finalResult; resultUnit.innerText = "Total units per year based on your hours."; resultContainer.style.display = 'block'; // Scroll to result resultContainer.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Understanding Pro Rata Holiday Entitlement

In most professional environments, part-time employees are legally entitled to the same benefits as full-time employees, just on a proportional basis. This is known as pro rata. Calculating this correctly ensures that staff are treated fairly and companies remain compliant with labor laws.

What is Pro Rata Holiday?

Pro rata comes from the Latin term "in proportion." If a full-time employee works 40 hours a week and receives 28 days of holiday, a part-time employee working 20 hours a week (50% of the time) is entitled to 50% of the leave—in this case, 14 days.

How to Calculate Pro Rata Entitlement

The simplest way to calculate pro rata holiday is by using your weekly hours relative to the company's full-time standard. The formula is as follows:

(Actual Weekly Hours ÷ Full-Time Weekly Hours) × Full-Time Annual Leave = Pro Rata Entitlement

Example Calculation

Imagine the following scenario:

  • Full-time hours: 37.5 hours per week
  • Full-time leave: 25 days
  • Your hours: 22.5 hours per week

The calculation would be: (22.5 / 37.5) * 25 = 15 days. Therefore, you are entitled to 15 days of paid annual leave per year.

Bank Holidays and Pro Rata

It is important to check whether your "Full-Time Entitlement" includes bank holidays. In many regions, the statutory minimum (like 5.6 weeks in the UK) includes bank holidays. If your company gives 20 days plus 8 bank holidays (total 28), you should use 28 in the "Full-Time Leave" field to get an accurate total for your contract.

Why Accuracy Matters

Using a pro rata holiday calculator helps prevent disputes between employers and employees. For employers, it ensures adherence to the Part-time Workers (Prevention of Less Favourable Treatment) Regulations. For employees, it ensures you are getting the rest and recuperation time you are legally entitled to.

Common FAQ

Should I calculate in days or hours?
If you work the same number of hours every day you work, days are usually fine. However, if your hours vary (e.g., 8 hours Monday, 4 hours Tuesday), it is often more accurate to calculate and track holiday in hours.

What if I start mid-year?
If you start halfway through the leave year, you would first calculate your annual pro rata amount, and then multiply that by the fraction of the year remaining.

Leave a Comment