OSHA Form 300A: Summary of Work-Related Injuries and Illnesses

Summary of Work-Related Injuries and Illnesses. This form summarizes the total number of job-related injuries and illnesses that occurred during the previous calendar year from the OSHA 300 Log.
Jimmy Law

What is OSHA Form 300A?

OSHA Form 300A is the Summary of Work-Related Injuries and Illnesses. This form summarizes the total number of job-related injuries and illnesses that occurred during the previous calendar year from the OSHA 300 Log.

Who Must Complete Form 300A?

All employers required to maintain OSHA Form 300 must complete Form 300A, even if there were no recordable injuries or illnesses during the year.

When Must Form 300A Be Posted?

Employers must:

Electronic Submission Requirements

Establishments with 250 or more employees, and certain establishments with 20-249 employees in designated high-hazard industries, must electronically submit Form 300A information to OSHA annually.

Official Source: OSHA Form 300A

Fast to set up. Easy to use.
Get your team up and running with Breakroom in 60 seconds. Or schedule a free, personalized demo today.
// Function to update active link function updateActiveLink(activeSectionId) { // Remove active class from all links navigationLinks.forEach(function(link) { link.classList.remove('is-active'); }); // Add active class to the corresponding link var activeLink = document.querySelector('a[href="#' + activeSectionId + '"]'); if (activeLink) { activeLink.classList.add('is-active'); } } // Set up intersection observer for scroll-based active states if (navigationLinks.length > 0) { var observerOptions = { root: null, rootMargin: '-20% 0px -80% 0px', // Trigger when section is 20% from top threshold: 0 }; var observer = new IntersectionObserver(function(entries) { entries.forEach(function(entry) { if (entry.isIntersecting) { updateActiveLink(entry.target.id); } }); }, observerOptions); // Observe all H2 sections headers.forEach(function(header) { observer.observe(header); }); }