Form 2553: Electing S Corporation Status

The form used by a qualifying corporation or LLC to elect to be treated as an S corporation for federal tax purposes. This changes how the business's income is taxed.
Jimmy Law

What is Form 2553?

Form 2553, Election by a Small Business Corporation, is used by qualifying corporations and limited liability companies (LLCs) to elect to be treated as an S corporation for federal tax purposes.

Why Elect S Corporation Status?

S corporation status allows business income, losses, deductions, and credits to pass through to shareholders' personal tax returns. This avoids the double taxation that C corporations face, where income is taxed at both the corporate and individual levels.

Who Can File Form 2553?

To elect S corporation status, your business must:

When Must Form 2553 Be Filed?

To elect S corporation status for the current tax year, file Form 2553:

For new corporations, this deadline is 2 months and 15 days after the first day of the first tax year.

What Information is Required?

Form 2553 requires:

How to File

Form 2553 must be filed with the IRS Service Center designated for your state. The form can be mailed or, in some cases, faxed.

Official Source: IRS Form 2553

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