Exempt vs. Non-Exempt: The Quick Comparison Guide

A classification under the Fair Labor Standards Act. Exempt employees are not entitled to overtime pay, while non-exempt employees must be paid for all hours worked, including overtime.

The Basic Distinction

The Fair Labor Standards Act divides employees into two categories:

Non-exempt employees are entitled to minimum wage and overtime pay at 1.5x their regular rate for hours over 40 in a workweek.

Exempt employees are exempt from minimum wage and overtime requirements; they receive a salary regardless of hours worked.

This is one of the most consequential classifications in employment law. Get it wrong, and you face years of back wages, liquidated damages, and penalties.

Key Differences at a Glance

Factor Non-Exempt Exempt
Overtime Pay Required at 1.5x for hours over 40/week No overtime regardless of hours
Minimum Wage Must earn at least minimum wage per hour No per-hour guarantee
Pay Structure Usually hourly (can be salaried) Must be salaried
Time Tracking Required Not typically required
Minimum Salary None $684/week minimum
Job Duties Any Must meet exemption test
Typical Roles Retail, food service, clerical Management, professional, admin

How Overtime Works

Non-Exempt Overtime

Must be paid 1.5x regular rate for every hour over 40 in a workweek.

Example: Work 48 hours at $20/hour = (40 × $20) + (8 × $30) = $1,040

Exempt Overtime

No overtime pay. Same salary whether working 35 hours or 60 hours.

Example: $1,200/week salary stays $1,200 whether working 35, 50, or 60 hours.

Payment Differences

Non-exempt employees are typically paid hourly, though some receive a salary while remaining overtime-eligible.

Exempt employees must be paid a salary that:

Who Qualifies as Exempt?

To be exempt, employees must meet BOTH:

  1. Salary requirements (amount and basis)
  2. Duties test (executive, administrative, professional, computer, or outside sales)

See our overtime exemptions article for more detailed requirements::

Key point: Job titles don't determine exemption—actual duties do.

Time Tracking

Non-exempt: Employers must track all hours worked—start times, stop times, breaks, total daily and weekly hours. This is legally required for proper pay calculation.

Exempt: Time tracking is optional. Some employers track for project management or workload monitoring, but it's not required for payroll purposes.

Flexibility and Expectations

Non-exempt employees:

Exempt employees:

Common Positions

Typically non-exempt:

Typically exempt:

These are generalizations—actual classification depends on specific duties and salary. See our exempt employee and FLSA non-exempt articles for more details on each category.

How to Tell Them Apart

Start here: Is the employee paid on a salary basis AND does that salary meet the minimum threshold ($684/week)?

Next: Do the employee's actual day-to-day duties meet one of the exemption tests?

When uncertain: Classify as non-exempt. It's safer to pay occasional overtime than risk misclassification.

Misclassification Costs

Misclassifying non-exempt employees as exempt creates massive liability:

Real example: 10 misclassified "managers" × $18,720 annual unpaid overtime × 3 years = $561,600, potentially doubled to over $1 million with liquidated damages.

State Law Variations

Some states have stricter rules than federal law, including:

When state and federal law differ, use whichever is more protective of the employee.

Quick Decision Guide

Classify as non-exempt if:

Classify as exempt only if:

When in doubt: Choose non-exempt. The cost of occasional overtime is far less than misclassification liability.

Managing Both Types

For Non-Exempt Employees

See our FLSA non-exempt article for comprehensive management guidance.

For Exempt Employees

See our exempt employee article for detailed management strategies.

Switching Classifications

Non-exempt to exempt: Only when job duties genuinely change to meet exemption tests. Promotion alone doesn't justify reclassification.

Exempt to non-exempt: Sometimes necessary when duties change or legal standards tighten. Handle carefully to maintain morale.

The Bottom Line

The exempt vs. non-exempt distinction determines whether employees receive overtime pay. Non-exempt employees get FLSA protections; exempt employees don't.

Classification requires meeting both salary and duties requirements—not just paying a salary or using a management title. Job titles are legally meaningless; actual duties determine classification.

When unsure, classify as non-exempt. Audit classifications regularly. Document decisions carefully. The cost of proper classification is minimal compared to the risk of getting it wrong.

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