Form 941: Employer's Quarterly Federal Tax Return

The Employer's Quarterly Federal Tax Return. It is used to report income taxes, Social Security tax, and Medicare tax withheld from employees' paychecks and the employer's portion of Social Security/Medicare taxes.
Jimmy Law

What is Form 941?

Form 941, Employer's Quarterly Federal Tax Return, is used by employers to report:

Who Must File Form 941?

Most employers must file Form 941 quarterly. This includes businesses, tax-exempt organizations, government entities, and agricultural employers who pay wages subject to federal income tax withholding or Social Security and Medicare taxes.

When is Form 941 Due?

Form 941 is due by the last day of the month following the end of each quarter:

If you made timely tax deposits for the quarter, you have an additional 10 days to file.

What Information Do You Need?

To complete Form 941, you'll need:

How to File

Form 941 can be filed electronically through the IRS e-file system or by mail. Electronic filing is required for employers with 250 or more employees.

Official Source: IRS Form 941

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); }); }