Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Overtime calculations

I need to keep track of my work times. I just want to input the start time,
finish time and lunch break. After that I would like the sheet to calculate
the following

Total Hours worked
Total Hours worked less lunch break
Overtime after 8 hours calculated at 1.5
Overtime calculated after 10 hours at double time.
Overtime Saturday calculated at 1.5 for the first 2 hours then double time
for the remainder
Overtime Sunday calculated at double time.

I have looked everywhere for a program to do this, or a template that I can
do it with Excel, but so far no good. Can anyone tell me where I could find
this? Please bear in mind that I am not a programmer and am looking for a
ready made solution.
Thanks
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,574
Default Overtime calculations

I don't know of any read-made solutions, but the calculations you're looking
to do are pretty simple algebraic/logic calculations which can be
accomplished with Excel's built-in functions.

No need for programming here.

Total hours worked is just a sum of a range.
Total hours less lunch is a sum of a range less another value.

Etc.

Since your needs are so specific, I would doubt there is a ready-made
template for this, however, as I say, these are calculations that can be done
in Excel without any programming knowledge.
--
Brevity is the soul of wit.


"kozzzle" wrote:

I need to keep track of my work times. I just want to input the start time,
finish time and lunch break. After that I would like the sheet to calculate
the following

Total Hours worked
Total Hours worked less lunch break
Overtime after 8 hours calculated at 1.5
Overtime calculated after 10 hours at double time.
Overtime Saturday calculated at 1.5 for the first 2 hours then double time
for the remainder
Overtime Sunday calculated at double time.

I have looked everywhere for a program to do this, or a template that I can
do it with Excel, but so far no good. Can anyone tell me where I could find
this? Please bear in mind that I am not a programmer and am looking for a
ready made solution.
Thanks

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default Overtime calculations

Reserve the top row for headings, as follows:

A1: Date
B1: Start_time
C1: Finish_time
D1: Lunch (hrs)
E1: Total_hrs
F1: Hrs_worked
G1: Time_n_half
H1: Double_time
I1: Single_time
J1: Effective_time

You can enter the dates down column A to suit - it is probably easier
to just put one date in A2 then highlight A2 downwards and use Edit |
Fill | Series (date and step of 1) then OK.

Enter these formulae in the appropriate cells, each formatted as Number
with 2 dp:

E2: =(C2-B2)*24
F2: =E2-D2
G2: =IF(WEEKDAY(A2)=7,IF(F22,2,F2),IF(F28,IF(F210,2 ,F2-8),0))
H2:
=IF(WEEKDAY(A2)=1,F2,IF(AND(WEEKDAY(A2)=7,F22),F2-2,IF(F210,F2-10,0)))
I2: =F2-G2-H2
J2: =I2+G2*1.5+H2*2

You can then highlight the cells E2:J2 and copy them down for as many
days as you expect to monitor.

For each day you will then need to enter the start time and finish time
(in Excel time format, i.e. hh:mm:ss) and your lunchbreak (in decimal
hours, eg .75 for three-quarters of an hour).

Hope this helps.

Pete

kozzzle wrote:
I need to keep track of my work times. I just want to input the start time,
finish time and lunch break. After that I would like the sheet to calculate
the following

Total Hours worked
Total Hours worked less lunch break
Overtime after 8 hours calculated at 1.5
Overtime calculated after 10 hours at double time.
Overtime Saturday calculated at 1.5 for the first 2 hours then double time
for the remainder
Overtime Sunday calculated at double time.

I have looked everywhere for a program to do this, or a template that I can
do it with Excel, but so far no good. Can anyone tell me where I could find
this? Please bear in mind that I am not a programmer and am looking for a
ready made solution.
Thanks


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Overtime calculations

Thanks for the formulas, I will try and muddle my way through them

"Pete_UK" wrote:

Reserve the top row for headings, as follows:

A1: Date
B1: Start_time
C1: Finish_time
D1: Lunch (hrs)
E1: Total_hrs
F1: Hrs_worked
G1: Time_n_half
H1: Double_time
I1: Single_time
J1: Effective_time

You can enter the dates down column A to suit - it is probably easier
to just put one date in A2 then highlight A2 downwards and use Edit |
Fill | Series (date and step of 1) then OK.

Enter these formulae in the appropriate cells, each formatted as Number
with 2 dp:

E2: =(C2-B2)*24
F2: =E2-D2
G2: =IF(WEEKDAY(A2)=7,IF(F22,2,F2),IF(F28,IF(F210,2 ,F2-8),0))
H2:
=IF(WEEKDAY(A2)=1,F2,IF(AND(WEEKDAY(A2)=7,F22),F2-2,IF(F210,F2-10,0)))
I2: =F2-G2-H2
J2: =I2+G2*1.5+H2*2

You can then highlight the cells E2:J2 and copy them down for as many
days as you expect to monitor.

For each day you will then need to enter the start time and finish time
(in Excel time format, i.e. hh:mm:ss) and your lunchbreak (in decimal
hours, eg .75 for three-quarters of an hour).

Hope this helps.

Pete

kozzzle wrote:
I need to keep track of my work times. I just want to input the start time,
finish time and lunch break. After that I would like the sheet to calculate
the following

Total Hours worked
Total Hours worked less lunch break
Overtime after 8 hours calculated at 1.5
Overtime calculated after 10 hours at double time.
Overtime Saturday calculated at 1.5 for the first 2 hours then double time
for the remainder
Overtime Sunday calculated at double time.

I have looked everywhere for a program to do this, or a template that I can
do it with Excel, but so far no good. Can anyone tell me where I could find
this? Please bear in mind that I am not a programmer and am looking for a
ready made solution.
Thanks



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default Overtime calculations

Post back if you get stuck.

Pete

kozzzle wrote:
Thanks for the formulas, I will try and muddle my way through them

"Pete_UK" wrote:

Reserve the top row for headings, as follows:

A1: Date
B1: Start_time
C1: Finish_time
D1: Lunch (hrs)
E1: Total_hrs
F1: Hrs_worked
G1: Time_n_half
H1: Double_time
I1: Single_time
J1: Effective_time

You can enter the dates down column A to suit - it is probably easier
to just put one date in A2 then highlight A2 downwards and use Edit |
Fill | Series (date and step of 1) then OK.

Enter these formulae in the appropriate cells, each formatted as Number
with 2 dp:

E2: =(C2-B2)*24
F2: =E2-D2
G2: =IF(WEEKDAY(A2)=7,IF(F22,2,F2),IF(F28,IF(F210,2 ,F2-8),0))
H2:
=IF(WEEKDAY(A2)=1,F2,IF(AND(WEEKDAY(A2)=7,F22),F2-2,IF(F210,F2-10,0)))
I2: =F2-G2-H2
J2: =I2+G2*1.5+H2*2

You can then highlight the cells E2:J2 and copy them down for as many
days as you expect to monitor.

For each day you will then need to enter the start time and finish time
(in Excel time format, i.e. hh:mm:ss) and your lunchbreak (in decimal
hours, eg .75 for three-quarters of an hour).

Hope this helps.

Pete

kozzzle wrote:
I need to keep track of my work times. I just want to input the start time,
finish time and lunch break. After that I would like the sheet to calculate
the following

Total Hours worked
Total Hours worked less lunch break
Overtime after 8 hours calculated at 1.5
Overtime calculated after 10 hours at double time.
Overtime Saturday calculated at 1.5 for the first 2 hours then double time
for the remainder
Overtime Sunday calculated at double time.

I have looked everywhere for a program to do this, or a template that I can
do it with Excel, but so far no good. Can anyone tell me where I could find
this? Please bear in mind that I am not a programmer and am looking for a
ready made solution.
Thanks






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
Need help calculating overtime to date BVHis Excel Worksheet Functions 8 January 9th 06 05:59 PM
Could you help me to calculate overtime Svetlana Excel Worksheet Functions 10 August 25th 05 09:00 AM
Calculations crossing multiple sheets Stephen McArthu Excel Discussion (Misc queries) 4 June 6th 05 04:35 PM
overtime templates Flash Excel Worksheet Functions 1 April 29th 05 08:09 PM
Overtime Calculations Doug Excel Worksheet Functions 1 March 8th 05 12:57 AM


All times are GMT +1. The time now is 04:52 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"