+ Reply to Thread
Results 1 to 4 of 4

calculating wages

  1. #1
    Registered User
    Join Date
    08-19-2006
    Posts
    1

    calculating wages

    I am trying to create a spread sheet that will automatically tell me what my check should be before all the taxes and stuff are taken out.
    I have a cell that shows how many hours I worked in the week. I know how to calculate my hours times my wage. I need to figure in OT. I know what the sum of 40 hours would be, but if it is 41 then that 1 hr needs to be calculated at time and a half. Any ideas on this?
    If not I will just do it the old fashioned way.

    John
    Last edited by rooney2oons; 08-19-2006 at 01:41 AM.

  2. #2
    Toppers
    Guest

    RE: calculating wages

    If total hours worked is in cell A1 and normal working week is 40 hours then
    if OT is in Cell B1

    =MAX(0,A1-40)

    or

    =IF(A1>40,A1-40,0)

    If OT is paid at 1.5 times standard hourly rate, then OT pay

    =B1*C1*1.5 where C1 is standard hourly rate

    i.e =Max(0,A1-40)*C1*1.5

    To make your s/sheet (more) flexible put the standard hours and overtime
    rate/factor in cells rather than have them as constants in the formulae;
    pPerhaps also have them as named ranges to make the formulae more readable.

    e.g.

    =MAX(0,A1-StdHours)*HourlyRate*OTRate

    HTH

    "rooney2oons" wrote:

    >
    > I am trying to create a spread sheet that will automatically tell me
    > what my check should be before all the taxes and stuff are taken out.
    > I have a cell that shows how many hours I worked in the week. I know
    > how to calculate my hours times my wage. I need to figure in OT. Any
    > ideas on this?
    > If not I will just do it the old fashioned way.
    >
    > John
    >
    >
    > --
    > rooney2oons
    > ------------------------------------------------------------------------
    > rooney2oons's Profile: http://www.excelforum.com/member.php...o&userid=37750
    > View this thread: http://www.excelforum.com/showthread...hreadid=573347
    >
    >


  3. #3
    WLMPilot
    Guest

    RE: calculating wages

    This is just an suggestion for layout purposes. I created a "calender" (if
    you will) in excel. I get paid every 2 wks.

    - Column A the number of week of the year (1-52).

    - Column B is the date for the beginning of each week (not payperiod),
    though if your payperiod starts on a Saturday, you can certainly list Sat as
    the first day of the week. With both A and B, you can enter the first value,
    either 1 (col A) or 1/1/2006 (col B), then create the appropriate formula for
    the remaining values, ie for the date (if first date is in cell B1), B2 would
    be +B1+7.

    - Colums C1:I1 would be

    -Column J holds the value of the actual payday.

    - Column K calculates TOTAL HOURS (for it's row), ie you will have two rows
    for a two week payperiod.

    - Each subsequent column after K can calculate REG PAY, OT PAY, VACATION, etc.

    I have a pretty extensive spreadsheet that not only calculates what I should
    be making (gross), but also if I take vacation, ie no OT or less OT then
    normal, it will tell me how much I lose. and also est annual salary based of
    averages of past payperiods.

    I use OFFICE XP. If you would like a copy, I can email it to you. May be
    Monday before I can do that though.

    Hope this helps.
    Les




    "rooney2oons" wrote:

    >
    > I am trying to create a spread sheet that will automatically tell me
    > what my check should be before all the taxes and stuff are taken out.
    > I have a cell that shows how many hours I worked in the week. I know
    > how to calculate my hours times my wage. I need to figure in OT. Any
    > ideas on this?
    > If not I will just do it the old fashioned way.
    >
    > John
    >
    >
    > --
    > rooney2oons
    > ------------------------------------------------------------------------
    > rooney2oons's Profile: http://www.excelforum.com/member.php...o&userid=37750
    > View this thread: http://www.excelforum.com/showthread...hreadid=573347
    >
    >


  4. #4
    WLMPilot
    Guest

    RE: calculating wages

    One more thing. If you did not figure it out. I enter the number of hours in
    the spreadsheet for each day worked.

    Les

    "rooney2oons" wrote:

    >
    > I am trying to create a spread sheet that will automatically tell me
    > what my check should be before all the taxes and stuff are taken out.
    > I have a cell that shows how many hours I worked in the week. I know
    > how to calculate my hours times my wage. I need to figure in OT. Any
    > ideas on this?
    > If not I will just do it the old fashioned way.
    >
    > John
    >
    >
    > --
    > rooney2oons
    > ------------------------------------------------------------------------
    > rooney2oons's Profile: http://www.excelforum.com/member.php...o&userid=37750
    > View this thread: http://www.excelforum.com/showthread...hreadid=573347
    >
    >


+ 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