+ Reply to Thread
Results 1 to 3 of 3

simple formula to calculate overtime pay

  1. #1
    Registered User
    Join Date
    03-02-2013
    Location
    usa
    MS-Off Ver
    Excel 2010
    Posts
    2

    simple formula to calculate overtime pay

    Hello all,

    I am new to this forum and hope someone can assist with helping me find the correct function to use.

    My scenario:
    I would like to calculate overtime pay for employees

    My problem:
    Regular pay applies for 1-40 hours. Time and a half is from 40-51 hours, and over 51 hours is double time.

    For double time, I am using the "if" function. =if(a1>51, (a1-51)*a2, 0).

    I am struggling with a function for 40-51 hours. I want to multiply anything that lies anything between 40-51 by the time and a half rate.

    Hopefully this makes sense. Thanks for your time and assistance, it is appreciated!

  2. #2
    Registered User
    Join Date
    03-02-2013
    Location
    usa
    MS-Off Ver
    Excel 2010
    Posts
    2

    Re: simple formula to calculate overtime pay

    P.s.- my apologies in advance if I've posted in the wrong subforum!

  3. #3
    Forum Contributor
    Join Date
    09-27-2012
    Location
    Florida
    MS-Off Ver
    Excel XP to 2013
    Posts
    342

    Re: simple formula to calculate overtime pay

    If you put the total hours in a cell and name the cell "Hours" and put the pay rate in a cell and name it "Rate" this formula will give your the total earnings.
    =IF(Hours>51,(((Hours-51)*2)+(Hours-(Hours-51)-40)*1.5+40)*Rate,IF(Hours>40,((Hours-40)*1.5+40)*Rate,Hours*Rate))

    If you just want total earned hours, this will work.
    =IF(Hours>51,(((Hours-51)*2)+(Hours-(Hours-51)-40)*1.5+40),IF(Hours>40,((Hours-40)*1.5+40),Hours))

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1