Form W-5: Advance Earned Income Credit Payment (Obsolete)

An obsolete form that was used by an employee to apply for the Advance Payment of the Earned Income Credit (EIC). This allowed eligible employees to receive part of the EIC in their paycheck throughout the year; now, employees must file for EIC on their Form 1040.
Jimmy Law

What Was Form W-5?

Form W-5, Earned Income Credit Advance Payment Certificate, was used by eligible employees to apply for advance payment of the Earned Income Credit (EIC). This allowed employees to receive a portion of their EIC in each paycheck throughout the year rather than waiting to claim it on their tax return.

Is Form W-5 Still Used?

No. Form W-5 and the advance payment option for the Earned Income Credit were eliminated effective January 1, 2011.

Why Was Form W-5 Discontinued?

The advance EIC payment option was removed due to:

How is the EIC Claimed Now?

Eligible taxpayers must now claim the full Earned Income Credit when they file their annual tax return. The credit is:

What is the Earned Income Credit?

The Earned Income Tax Credit (EITC or EIC) is a refundable tax credit for low- to moderate-income workers. The amount depends on:

For 2024, the maximum credit is:

Alternatives for Cash Flow Needs

Taxpayers who need income assistance throughout the year can:

Official Source: IRS Earned Income Tax Credit Information

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