#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 181
Default Over time hours

Need help on solving a problem, I have A1 to G1 as (Sun thru Sat) for Days
off with pay, A2 to G2 where I put hours; then A3 to G3 is for regular hours;
then A4 to G4 is overtime hours, I have the regular hours ( A3 to G3 ) set up
perfect to work with overtime hours ( A4 to G4), Question is how do you get
overtime hours from A2 to G2 to work in A4 to G4 too if not using A3 to G3? I
want A4:G4 over time to beable to calculate from either A2:G2
or A3:G3.
A B C D E F G
Date 1 Sun Mon Tues Wed Thurs Fri Sat
Days Off 2 0 12 8 18 0 0 0
Regular 3 0 0 0 0 15 17 12
Overtime 4 This roll for overtime
How do you do formulas for both A2:G2 and A3:G3 for overtime in A4:F4?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,101
Default Over time hours

=IF(RegHours40,RegHours-40,0)

"Curtis" wrote:

Need help on solving a problem, I have A1 to G1 as (Sun thru Sat) for Days
off with pay, A2 to G2 where I put hours; then A3 to G3 is for regular hours;
then A4 to G4 is overtime hours, I have the regular hours ( A3 to G3 ) set up
perfect to work with overtime hours ( A4 to G4), Question is how do you get
overtime hours from A2 to G2 to work in A4 to G4 too if not using A3 to G3? I
want A4:G4 over time to beable to calculate from either A2:G2
or A3:G3.
A B C D E F G
Date 1 Sun Mon Tues Wed Thurs Fri Sat
Days Off 2 0 12 8 18 0 0 0
Regular 3 0 0 0 0 15 17 12
Overtime 4 This roll for overtime
How do you do formulas for both A2:G2 and A3:G3 for overtime in A4:F4?

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 181
Default Over time hours

This is not the answer I am looking for. I have all ready have it set up for
regular hours for over time, I need to also used days off with overtime too?

"Mike" wrote:

=IF(RegHours40,RegHours-40,0)

"Curtis" wrote:

Need help on solving a problem, I have A1 to G1 as (Sun thru Sat) for Days
off with pay, A2 to G2 where I put hours; then A3 to G3 is for regular hours;
then A4 to G4 is overtime hours, I have the regular hours ( A3 to G3 ) set up
perfect to work with overtime hours ( A4 to G4), Question is how do you get
overtime hours from A2 to G2 to work in A4 to G4 too if not using A3 to G3? I
want A4:G4 over time to beable to calculate from either A2:G2
or A3:G3.
A B C D E F G
Date 1 Sun Mon Tues Wed Thurs Fri Sat
Days Off 2 0 12 8 18 0 0 0
Regular 3 0 0 0 0 15 17 12
Overtime 4 This roll for overtime
How do you do formulas for both A2:G2 and A3:G3 for overtime in A4:F4?

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,101
Default Over time hours

Im not getting your point on Days off
Are they actual days or are they Hours off
I can help if I have better and more info

"Curtis" wrote:

This is not the answer I am looking for. I have all ready have it set up for
regular hours for over time, I need to also used days off with overtime too?

"Mike" wrote:

=IF(RegHours40,RegHours-40,0)

"Curtis" wrote:

Need help on solving a problem, I have A1 to G1 as (Sun thru Sat) for Days
off with pay, A2 to G2 where I put hours; then A3 to G3 is for regular hours;
then A4 to G4 is overtime hours, I have the regular hours ( A3 to G3 ) set up
perfect to work with overtime hours ( A4 to G4), Question is how do you get
overtime hours from A2 to G2 to work in A4 to G4 too if not using A3 to G3? I
want A4:G4 over time to beable to calculate from either A2:G2
or A3:G3.
A B C D E F G
Date 1 Sun Mon Tues Wed Thurs Fri Sat
Days Off 2 0 12 8 18 0 0 0
Regular 3 0 0 0 0 15 17 12
Overtime 4 This roll for overtime
How do you do formulas for both A2:G2 and A3:G3 for overtime in A4:F4?

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,886
Default Over time hours

Hi Curtis

I'm not sure I understand your request but maybe in A4 you need
=if(A2+A3=0,0,MAX(0,MAX(A2,A3)-8))
and copy across

--
Regards

Roger Govier


"Curtis" wrote in message
...
Need help on solving a problem, I have A1 to G1 as (Sun thru Sat) for
Days
off with pay, A2 to G2 where I put hours; then A3 to G3 is for regular
hours;
then A4 to G4 is overtime hours, I have the regular hours ( A3 to G3 )
set up
perfect to work with overtime hours ( A4 to G4), Question is how do
you get
overtime hours from A2 to G2 to work in A4 to G4 too if not using A3
to G3? I
want A4:G4 over time to beable to calculate from either A2:G2
or A3:G3.
A B C D E F
G
Date 1 Sun Mon Tues Wed Thurs Fri Sat
Days Off 2 0 12 8 18 0 0
0
Regular 3 0 0 0 0 15 17
12
Overtime 4 This roll for overtime
How do you do formulas for both A2:G2 and A3:G3 for overtime in
A4:F4?





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 181
Default Over time hours

Okay, we have a 14 on and 7 off with pay. Most time guys have to work on
their days off so we try to keep hours separate from regular hours. What I am
trying to do if they work overtime on their days off I want the over time to
be in same line as the regular hour over time too. Days off with pay is
A2:G2; regular hour is A3:G3; over time is A4:G4. Now if theres overtime in
A2 if not A3 then its A4 or if there overtime in A3 if not A2 then its A4.

"Mike" wrote:

Im not getting your point on Days off
Are they actual days or are they Hours off
I can help if I have better and more info

"Curtis" wrote:

This is not the answer I am looking for. I have all ready have it set up for
regular hours for over time, I need to also used days off with overtime too?

"Mike" wrote:

=IF(RegHours40,RegHours-40,0)

"Curtis" wrote:

Need help on solving a problem, I have A1 to G1 as (Sun thru Sat) for Days
off with pay, A2 to G2 where I put hours; then A3 to G3 is for regular hours;
then A4 to G4 is overtime hours, I have the regular hours ( A3 to G3 ) set up
perfect to work with overtime hours ( A4 to G4), Question is how do you get
overtime hours from A2 to G2 to work in A4 to G4 too if not using A3 to G3? I
want A4:G4 over time to beable to calculate from either A2:G2
or A3:G3.
A B C D E F G
Date 1 Sun Mon Tues Wed Thurs Fri Sat
Days Off 2 0 12 8 18 0 0 0
Regular 3 0 0 0 0 15 17 12
Overtime 4 This roll for overtime
How do you do formulas for both A2:G2 and A3:G3 for overtime in A4:F4?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
calculating timesheet, time-in/time-out = total hours & minutes, . Steve Lindsay Excel Worksheet Functions 13 November 8th 06 03:45 PM
How do add time/hours to get answer in hours if Ans24 Fran Excel Worksheet Functions 2 May 20th 06 05:50 AM
template or formula for start time -finish time -total hours ple cc New Users to Excel 1 March 27th 06 06:06 PM
How do I time Hours & mins in excel - Time sheet Helen Excel Discussion (Misc queries) 5 September 17th 05 11:42 AM
Convert hours and minutes in time format into fractions of hours.. Akern Excel Worksheet Functions 4 April 21st 05 02:56 PM


All times are GMT +1. The time now is 04:21 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"