Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How do i write formul for hours over 40, anything over 40 is Overtime. I
can not find the formul to seperate reg time from overtime. Can some one help me? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Let's say your total hours are in cell A1. Use these formulas:
Regular Hours: =MIN(A1,40) Overtime Hours: =MAX(A1-40,0) HTH, Elkar "Earl A" wrote: How do i write formul for hours over 40, anything over 40 is Overtime. I can not find the formul to seperate reg time from overtime. Can some one help me? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Let's put total hours in A1. Assume that straight time is $12.00 per hour
and overtime is $18.00 per hour =IF((A1<=40),A1*12,480+(A1-40)*18) -- Gary''s Student - gsnu200738 "Earl A" wrote: How do i write formul for hours over 40, anything over 40 is Overtime. I can not find the formul to seperate reg time from overtime. Can some one help me? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Elkar, it worked for the overtime but it still total #of in hours in my reg
time. h21 shows my total hours of 67. I need to show 40 in reg time & 27 in overtime. overtime is in i21. THANK YOU VERY, VERY MUCH. ELKAR I AM NOT SURE OF WHAT I AM DOING WRONG. "Elkar" wrote: Let's say your total hours are in cell A1. Use these formulas: Regular Hours: =MIN(A1,40) Overtime Hours: =MAX(A1-40,0) HTH, Elkar "Earl A" wrote: How do i write formul for hours over 40, anything over 40 is Overtime. I can not find the formul to seperate reg time from overtime. Can some one help me? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Go back and check what you entered, because Elkar's formulas are correct.
Without knowing exactly what you entered, it's not possible to tell you what you are doing wrong. If h21 has your total hours (67) in your case, Reg hours: =min(h21,40) Overtime hours (i21): =max(h21-40,0) -- Regards, Fred "Earl A" wrote in message ... Elkar, it worked for the overtime but it still total #of in hours in my reg time. h21 shows my total hours of 67. I need to show 40 in reg time & 27 in overtime. overtime is in i21. THANK YOU VERY, VERY MUCH. ELKAR I AM NOT SURE OF WHAT I AM DOING WRONG. "Elkar" wrote: Let's say your total hours are in cell A1. Use these formulas: Regular Hours: =MIN(A1,40) Overtime Hours: =MAX(A1-40,0) HTH, Elkar "Earl A" wrote: How do i write formul for hours over 40, anything over 40 is Overtime. I can not find the formul to seperate reg time from overtime. Can some one help me? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
CELLS NOT CALC FORMULAS - VALUES STAY SME FORMULAS CORRECT?? HELP | Excel Worksheet Functions | |||
lookup formulas dependent upon lookup formulas | Excel Worksheet Functions | |||
automatically copy formulas down columns or copy formulas all the | Excel Worksheet Functions | |||
Formulas not evaluated, Formulas treated as strings | Excel Discussion (Misc queries) | |||
formulas for changing formulas? | Excel Discussion (Misc queries) |