Dart Rate Calculator Online

DART Rate Calculator Online (OSHA Safety Metric) body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; max-width: 800px; margin: 0 auto; padding: 20px; background-color: #f9f9f9; } .calculator-container { background: #ffffff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); margin-bottom: 40px; border-top: 5px solid #2e7d32; } h1 { text-align: center; color: #1b5e20; margin-bottom: 10px; } h2 { color: #2e7d32; margin-top: 30px; } h3 { color: #43a047; } .input-group { margin-bottom: 20px; } label { display: block; margin-bottom: 8px; font-weight: 600; color: #555; } input[type="number"] { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 16px; box-sizing: border-box; } button { width: 100%; padding: 15px; background-color: #2e7d32; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } button:hover { background-color: #1b5e20; } #result-container { margin-top: 25px; padding: 20px; background-color: #e8f5e9; border: 1px solid #c8e6c9; border-radius: 4px; display: none; text-align: center; } .result-value { font-size: 32px; font-weight: bold; color: #1b5e20; margin: 10px 0; } .result-label { font-size: 14px; color: #555; text-transform: uppercase; letter-spacing: 1px; } .info-box { background-color: #fff3cd; border: 1px solid #ffeeba; color: #856404; padding: 15px; margin-top: 15px; border-radius: 4px; font-size: 0.9em; display: none; } .content-section { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); } .formula-box { background-color: #f1f8e9; padding: 15px; border-left: 4px solid #2e7d32; font-family: monospace; margin: 15px 0; }

OSHA DART Rate Calculator

Calculate your Days Away, Restricted, or Transferred (DART) rate for safety compliance.

Number of cases involving days away from work, restricted work activity, or job transfers.
Total hours worked by all employees during the calendar year.
Your DART Rate
0.00

Please enter valid numbers for both fields. Total hours must be greater than zero.

What is a DART Rate?

The DART Rate (Days Away, Restricted, or Transferred) is a critical safety metric defined by the Occupational Safety and Health Administration (OSHA). It helps organizations measure the number of recordable workplace injuries and illnesses that resulted in an employee missing work, being restricted in their daily duties, or being transferred to a different role due to the injury.

Unlike the TRIR (Total Recordable Incident Rate), which counts all recordable incidents, the DART rate specifically focuses on the more severe incidents that impact an employee's ability to perform their regular job functions.

The DART Rate Formula

To calculate the DART rate manually, you use the standard formula provided by the Bureau of Labor Statistics (BLS):

DART Rate = (N × 200,000) / EH

Where:

  • N = Number of DART incidents (recordable injuries/illnesses resulting in Days Away, Restricted work activity, or Job Transfer).
  • EH = Total hours worked by all employees during the calendar year.
  • 200,000 = A benchmark constant representing 100 full-time employees working 40 hours per week for 50 weeks per year.

How to Use This DART Rate Calculator

  1. Count your DART Incidents: Review your OSHA 300 Log. Count the number of cases checked in columns H (Days away from work) and I (Job transfer or restriction). Sum these two numbers to get your total DART incidents.
  2. Determine Total Hours: Input the total number of hours worked by all employees (including full-time, part-time, and seasonal) during the specific reporting period (usually one year). Do not include vacation, sick leave, or holidays.
  3. Calculate: Click the button to generate your rate.

Why is DART Rate Important?

Your DART rate is a key performance indicator (KPI) for workplace safety. It is often used by:

  • OSHA: To target high-risk industries for inspections.
  • Insurance Companies: To determine workers' compensation premiums. A lower rate often results in lower premiums.
  • Clients and Partners: During pre-qualification processes for contracts. Many general contractors require subcontractors to maintain a DART rate below the industry average.

DART vs. TRIR

While both metrics are essential, they tell different stories:

  • TRIR (Total Recordable Incident Rate): Calculates the rate of all recordable incidents, regardless of severity.
  • DART: Calculates only the incidents that were severe enough to change an employee's work status.

A DART rate that is very close to your TRIR suggests that most of your injuries are severe, whereas a wide gap between the two suggests you have many minor injuries but fewer severe ones.

function calculateDARTRate() { // Get input values var incidentsInput = document.getElementById('dartIncidents'); var hoursInput = document.getElementById('totalHours'); var resultContainer = document.getElementById('result-container'); var resultDisplay = document.getElementById('dartResultDisplay'); var explanation = document.getElementById('resultExplanation'); var errorBox = document.getElementById('error-box'); // Parse values var incidents = parseFloat(incidentsInput.value); var hours = parseFloat(hoursInput.value); // Validation if (isNaN(incidents) || isNaN(hours) || hours <= 0 || incidents < 0) { errorBox.style.display = 'block'; resultContainer.style.display = 'none'; return; } // Hide error box if valid errorBox.style.display = 'none'; // Calculation: (Incidents * 200,000) / Total Hours var constant = 200000; var dartRate = (incidents * constant) / hours; // Display Result resultDisplay.innerHTML = dartRate.toFixed(2); // Contextual text var contextText = "This means for every 100 full-time employees, " + dartRate.toFixed(1) + " incidents resulted in days away, restrictions, or transfers."; explanation.innerHTML = contextText; resultContainer.style.display = 'block'; }

Leave a Comment