Salaried Non-Exempt: The Hybrid Pay Structure That Confuses Everyone

A salaried employee who is still entitled to overtime pay under the FLSA because their job duties do not meet the exemption tests. Their salary covers only their first 40 hours of work.
Jimmy Law

What Is a Salaried Non-Exempt Employee?

A salaried non-exempt employee receives a fixed salary each pay period but still earns overtime pay when working more than 40 hours in a workweek. This creates a hybrid compensation structure: the predictability of a salary with the overtime protections of an hourly worker.

This classification surprises many employers because of a pervasive misconception: that salary automatically means exempt from overtime. It doesn't. Being paid a salary is just one part of the exemption test—employees must also meet specific duties requirements. If an employee fails the duties test, they remain non-exempt regardless of how they're paid.

For more on the differences between exempt and non-exempt employees generally, see our FLSA non-exempt article.

Quick Comparison

Factor Hourly Non-Exempt Salaried Non-Exempt Exempt
Pay Structure Hourly rate Fixed salary Fixed salary
Overtime Eligible Yes Yes No
Time Tracking Required Required Not required
Overtime Calculation Simple: rate Ă— 1.5 Complex: varies by method N/A
Minimum Salary None None (but must meet minimum wage) $684/week

Why Use This Classification?

Employers choose salaried non-exempt status for specific strategic reasons:

Compliance Protection: When a position doesn't meet exemption criteria but you want salary structure, this classification avoids misclassification risk while maintaining professional positioning.

Predictable Budgeting: A fixed salary makes budgeting easier during standard weeks while still complying with overtime requirements during busy periods.

Transition Roles: This works well for employees being groomed for exempt positions—they receive the salary structure they'll eventually have permanently while still protected by overtime rules.

Professional Perception: Some employers prefer the "salaried" designation for certain roles, even when duties don't qualify for exemption.

The Critical Piece: Overtime Calculation

This is where salaried non-exempt gets complicated. Unlike hourly employees where overtime is straightforward (hourly rate Ă— 1.5), calculating overtime for salaried non-exempt requires determining the "regular rate" first.

The method depends on the agreement between employer and employee about how many hours the salary covers.

Method 1: Fixed Workweek Agreement (Most Common)

The employer and employee agree upfront that the salary covers a specific number of hours per week. That number becomes the divisor for calculating the regular rate.

Example:

If the employee works 45 hours:

This method is clearest for employees and most common in practice.

Method 2: Fluctuating Workweek (Less Common)

Some employers set the salary to cover all hours actually worked, meaning the regular rate changes each week based on hours worked.

Example:

Why the half-time rate? The salary already compensated the employee for all 45 hours at the regular rate. You only owe the additional "half" of time-and-a-half for overtime hours.

This method results in lower overtime costs but can confuse employees and requires careful documentation.

Calculation Method Comparison

Factor Fixed Workweek Fluctuating Workweek
Regular Rate Fixed (salary Ă· agreed hours) Variable (salary Ă· actual hours)
Overtime Multiplier 1.5Ă— regular rate 0.5Ă— regular rate
Employee Clarity High - easy to understand Low - often confusing
Overtime Cost Higher Lower
Best For Consistent schedules near 40 hours Highly variable hours each week

State-Specific Rules

California employers: You must divide the weekly salary by a maximum of 40 hours when calculating the regular rate, regardless of any agreement about hours covered. California doesn't allow the fluctuating workweek method.

Always check your state's Department of Labor for specific requirements.

Documentation Requirements

Whatever calculation method you choose, document it in writing:

  1. How many hours the salary covers (if using fixed workweek)
  2. Which calculation method will be used
  3. How the regular rate will be determined
  4. When overtime rates apply

Include this information in:

Clear documentation prevents disputes and ensures consistent application across all similarly situated employees.

Time Tracking Is Still Required

The biggest misconception employers have: assuming that salaried employees don't need to track time. Wrong.

Salaried non-exempt employees must track all hours worked, just like hourly non-exempt employees. The FLSA requires accurate records of:

Without accurate time tracking, you cannot calculate overtime correctly. This creates significant compliance risk and potential wage claims.

Workforce management tools like Breakroom can help manage time tracking for all employee types, including salaried non-exempt workers.

Common Mistakes to Avoid

Mistake #1: Treating Salary as Exempt Status The most frequent error is assuming salary equals no overtime. It doesn't. Non-exempt employees earn overtime regardless of pay structure.

Mistake #2: Skipping Time Tracking All non-exempt employees must track hours.

Mistake #3: Using Wrong Calculation Method Mixing up the two methods or not documenting which applies creates payroll errors and potential violations.

Mistake #4: Improper Salary Deductions The rules for docking pay differ between exempt and non-exempt employees. Don't assume exempt deduction rules apply to salaried non-exempt workers.

When This Classification Makes Sense

Salaried non-exempt status works well for:

Communication Is Critical

Salaried non-exempt status confuses employees who expect salary to mean exempt. Address this directly:

In the Offer Letter: "This position is classified as non-exempt under the FLSA and is eligible for overtime pay at 1.5 times your regular rate. You will be paid a weekly salary of $800, which covers 40 hours per week. You must track all hours worked."

During Onboarding: Explain explicitly that:

In Your Handbook: Include a section explaining salaried non-exempt classification, overtime calculation methods, and time tracking requirements.

Best Practices

  1. Choose One Method: Select either fixed workweek or fluctuating workweek and apply it consistently to all similarly situated employees

  2. Document Everything: Put the classification, calculation method, and hours covered in writing

  3. Train Managers: Ensure supervisors understand that salary ≠ exempt and know how to track hours and calculate overtime

  4. Audit Annually: Review whether duties still don't qualify for exemption and whether the salary meets minimum wage requirements for all hours worked

  5. Set Clear Overtime Policies: Establish when overtime is allowed, who must approve it, and how it will be managed

When to Reconsider This Classification

If you find yourself constantly explaining the structure or dealing with confusion, consider:

The Bottom Line

Salaried non-exempt employees occupy a middle ground: they receive salary structure while retaining overtime protections. This classification works when you want the professional positioning and predictability of a salary but the position doesn't meet exemption criteria.

The key to success is threefold:

  1. Calculate overtime correctly using one of the approved methods
  2. Track all hours worked despite the salary structure
  3. Communicate clearly so employees understand they're not exempt

Done right, salaried non-exempt classification provides compliance protection and flexibility. Done wrong, it creates confusion, payroll errors, and FLSA violations.

‍

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