How to Calculate Lost Time Incident Rate

Understanding and Calculating the Lost Time Incident Rate (LTIR)

The Lost Time Incident Rate (LTIR), also known as the Lost Workday Incident Rate, is a key performance indicator (KPI) used in occupational health and safety to measure the frequency of workplace injuries that result in an employee being unable to work their regularly scheduled shift.

Why is LTIR Important?

Tracking LTIR helps organizations identify trends in workplace safety, assess the effectiveness of their safety programs, and benchmark their performance against industry standards. A high LTIR can indicate underlying safety issues that need to be addressed, potentially leading to increased costs, reduced productivity, and damage to employee morale.

How to Calculate LTIR

The formula for calculating LTIR is as follows:

LTIR = (Number of Lost Time Incidents × 200,000) / Total Number of Hours Worked

The '200,000' in the formula represents the number of hours 100 employees would work in a 40-hour week for a full year (100 employees × 40 hours/week × 50 weeks/year = 200,000 hours). This standardizes the rate, allowing for comparisons across different company sizes and working hours.

  • Number of Lost Time Incidents: This is the total count of incidents that resulted in an employee missing at least one full scheduled workday.
  • Total Number of Hours Worked: This is the sum of all hours worked by all employees during the period being measured (e.g., a month, quarter, or year).

Using the Calculator

To use the calculator below, simply input the required information:

  1. Enter the total Number of Lost Time Incidents for the period.
  2. Enter the Total Hours Worked by all employees during the same period.
  3. Click "Calculate LTIR" to see your Lost Time Incident Rate.

LTIR Calculator

.calculator-container { display: flex; flex-wrap: wrap; gap: 20px; font-family: sans-serif; } .calculator-article { flex: 2; min-width: 300px; } .calculator-inputs { flex: 1; min-width: 250px; border: 1px solid #ccc; padding: 15px; border-radius: 5px; background-color: #f9f9f9; } .input-group { margin-bottom: 15px; } .input-group label { display: block; margin-bottom: 5px; font-weight: bold; } .input-group input { width: calc(100% – 10px); padding: 8px; border: 1px solid #ccc; border-radius: 3px; } .calculator-inputs button { display: block; width: 100%; padding: 10px; background-color: #007bff; color: white; border: none; border-radius: 5px; cursor: pointer; font-size: 16px; margin-top: 10px; } .calculator-inputs button:hover { background-color: #0056b3; } #result { margin-top: 20px; font-weight: bold; font-size: 1.1em; text-align: center; color: #333; } code { background-color: #e9e9e9; padding: 2px 5px; border-radius: 3px; } function calculateLTIR() { var lostTimeIncidentsInput = document.getElementById("lostTimeIncidents"); var totalHoursWorkedInput = document.getElementById("totalHoursWorked"); var resultDiv = document.getElementById("result"); var lostTimeIncidents = parseFloat(lostTimeIncidentsInput.value); var totalHoursWorked = parseFloat(totalHoursWorkedInput.value); if (isNaN(lostTimeIncidents) || isNaN(totalHoursWorked) || totalHoursWorked <= 0) { resultDiv.textContent = "Please enter valid numbers for incidents and hours worked. Total hours worked must be greater than zero."; return; } var ltir = (lostTimeIncidents * 200000) / totalHoursWorked; if (ltir < 0) { resultDiv.textContent = "LTIR cannot be negative. Please check your inputs."; } else { resultDiv.textContent = "LTIR: " + ltir.toFixed(2); } }

Leave a Comment