Calculate incidence rates based on FTEs and Patient Days
Please enter valid positive numbers for Injuries and FTE.
Rate per 100 FTEs
–
Injuries per 100 Full-Time Employees
Rate per 1,000 Patient Days
–
Injuries per 1,000 Patient Days
function calculateNSIRate() {
// Get input values
var injuriesInput = document.getElementById('nsi_injuries');
var fteInput = document.getElementById('nsi_fte');
var patientDaysInput = document.getElementById('nsi_patient_days');
var errorDiv = document.getElementById('nsi_error');
var resultsDiv = document.getElementById('nsi_results');
var resultFteDiv = document.getElementById('result_fte');
var resultDaysDiv = document.getElementById('result_days');
var patientDaysContainer = document.getElementById('patient_days_result_container');
// Parse values
var injuries = parseFloat(injuriesInput.value);
var fte = parseFloat(fteInput.value);
var patientDays = parseFloat(patientDaysInput.value);
// Validation
if (isNaN(injuries) || injuries < 0 || isNaN(fte) || fte 0) {
var daysRate = (injuries / patientDays) * 1000;
resultDaysDiv.innerHTML = daysRate.toFixed(2);
patientDaysContainer.style.display = 'block';
} else {
patientDaysContainer.style.display = 'none';
}
}
How to Calculate Needle Stick Injury Rate
Calculating the Needle Stick Injury (NSI) rate is a critical component of infection control and occupational safety in healthcare settings. Tracking these rates allows facilities to benchmark their safety performance against national standards (such as EPINET or CDC data) and evaluate the effectiveness of safety devices and training programs.
There are two primary methods for calculating these rates: benchmarking against the number of employees (FTEs) or benchmarking against patient volume (Patient Days).
Method 1: Rate per 100 FTEs (Employee-Based)
This is the most common metric used to assess risk relative to the size of the workforce. It adjusts the raw number of injuries based on the number of full-time staff working.
Formula: (Number of Injuries ÷ Total FTEs) × 100
Example: If a hospital has 5 needle stick injuries in a year and employs 150 Full-Time Equivalent staff:
(5 ÷ 150) = 0.0333
0.0333 × 100 = 3.33
The result is 3.33 injuries per 100 FTEs.
Method 2: Rate per 1,000 Patient Days (Volume-Based)
This metric is often used to assess risk relative to clinical activity levels. It is particularly useful in acute care settings where patient turnover is high.
Formula: (Number of Injuries ÷ Total Patient Days) × 1,000
Example: If a unit reports 5 injuries and had 5,000 total patient days during the reporting period:
(5 ÷ 5,000) = 0.001
0.001 × 1,000 = 1.00
The result is 1.00 injury per 1,000 patient days.
Definitions of Terms
Needle Stick Injury: A percutaneous wound caused by a needle or other sharp medical instrument.
FTE (Full-Time Equivalent): A unit that indicates the workload of an employed person. One FTE is equivalent to one full-time worker (usually 40 hours per week or 2,080 hours per year).
Patient Days: The cumulative number of days that patients occupied a bed in the facility during the selected time period.
Why Tracking NSI Rates Matters
A simple count of injuries is often misleading. A large hospital will naturally have more injuries than a small clinic simply because they have more staff and procedures. By calculating the rate, you create a standardized metric that allows for fair comparison across different time periods, different departments, or against national averages provided by organizations like OSHA or the International Safety Center.