+ Reply to Thread
Results 1 to 2 of 2

Overtime Calculations

  1. #1
    Doug
    Guest

    Overtime Calculations

    I want to add a column of numbers, with a "Regular Time" box and "Overtime
    Box". I need the formula to add the column. If the total is over 40 hours,
    then I need it to put 40 in the Regular box and the difference between the
    actual total and 40 in the Overtime box. If the total is below 40, then put
    the actual number in the Regular box. Thanks in advance for the help.


  2. #2
    Ron Rosenfeld
    Guest

    Re: Overtime Calculations

    On Mon, 7 Mar 2005 15:49:10 -0800, "Doug" <[email protected]>
    wrote:

    >I want to add a column of numbers, with a "Regular Time" box and "Overtime
    >Box". I need the formula to add the column. If the total is over 40 hours,
    >then I need it to put 40 in the Regular box and the difference between the
    >actual total and 40 in the Overtime box. If the total is below 40, then put
    >the actual number in the Regular box. Thanks in advance for the help.
    >


    If you are entering the total time in column A, and want Regular time in column
    B and Overtime in column C, then:

    A1: Total Time
    B1: =MIN(A1,40)
    C1: =MAX(0,A1-B1)


    --ron

+ 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