Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
seanrigby
 
Posts: n/a
Default Totaling a Sum for every 7 days


Have work time tracked on a spread sheet. On every Saturday, it begins
a new week.

I need a way to break it down per week for the hours worked, for the
entire month. Straight time and overtime included)

Our month begins on the 26th of every month, and ends the 25th as
well.

Is this possible?


--
seanrigby
------------------------------------------------------------------------
seanrigby's Profile: http://www.excelforum.com/member.php...o&userid=34133
View this thread: http://www.excelforum.com/showthread...hreadid=556500

  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Umlas
 
Posts: n/a
Default Totaling a Sum for every 7 days

look at using a pivot table and grouping by weeks.

"seanrigby" wrote
in message ...

Have work time tracked on a spread sheet. On every Saturday, it begins
a new week.

I need a way to break it down per week for the hours worked, for the
entire month. Straight time and overtime included)

Our month begins on the 26th of every month, and ends the 25th as
well.

Is this possible?


--
seanrigby
------------------------------------------------------------------------
seanrigby's Profile:

http://www.excelforum.com/member.php...o&userid=34133
View this thread: http://www.excelforum.com/showthread...hreadid=556500



  #3   Report Post  
Posted to microsoft.public.excel.misc
Barb Reinhardt
 
Posts: n/a
Default Totaling a Sum for every 7 days

Let's say your date are in A2:A5
The hours are in C2:C5
The workweek is in B2:B5 (calculated)
In B2 enter: =WEEKNUM(A2+1,1) and copy down
Column D are your cumulative hours for the month (calculated)
In D2 enter: =SUMPRODUCT(--(B$2:B2=B2),(C$2:C2)) and copy down.

Is this what you want???

HTH,
Barb Reinhardt



"seanrigby" wrote:


Have work time tracked on a spread sheet. On every Saturday, it begins
a new week.

I need a way to break it down per week for the hours worked, for the
entire month. Straight time and overtime included)

Our month begins on the 26th of every month, and ends the 25th as
well.

Is this possible?


--
seanrigby
------------------------------------------------------------------------
seanrigby's Profile: http://www.excelforum.com/member.php...o&userid=34133
View this thread: http://www.excelforum.com/showthread...hreadid=556500


  #4   Report Post  
Posted to microsoft.public.excel.misc
Barb Reinhardt
 
Posts: n/a
Default Totaling a Sum for every 7 days

You could also add a conditional format for the Cumulative column. The
equation for the data as presented in my example would be

FORMULA IS: =COUNTIF(B$2:B$6,$B2)<COUNTIF(B$2:B2,$B2)

Ensure you select from B2 down. Change the font color to white if the
condition is met.

"Barb Reinhardt" wrote:

Let's say your date are in A2:A5
The hours are in C2:C5
The workweek is in B2:B5 (calculated)
In B2 enter: =WEEKNUM(A2+1,1) and copy down
Column D are your cumulative hours for the month (calculated)
In D2 enter: =SUMPRODUCT(--(B$2:B2=B2),(C$2:C2)) and copy down.

Is this what you want???

HTH,
Barb Reinhardt



"seanrigby" wrote:


Have work time tracked on a spread sheet. On every Saturday, it begins
a new week.

I need a way to break it down per week for the hours worked, for the
entire month. Straight time and overtime included)

Our month begins on the 26th of every month, and ends the 25th as
well.

Is this possible?


--
seanrigby
------------------------------------------------------------------------
seanrigby's Profile: http://www.excelforum.com/member.php...o&userid=34133
View this thread: http://www.excelforum.com/showthread...hreadid=556500


  #5   Report Post  
Posted to microsoft.public.excel.misc
seanrigby
 
Posts: n/a
Default Totaling a Sum for every 7 days


Barb,

I have as follows:

Column A is the name of the day
Column B is the actual date
Column C is the strait time hours
Column D if my overtime hours

From this list, I need to know when each Saturday begins
and then total each straight time and overtime hours

For example:

A1: Wednesday B1: 6/28/06 C1: 8 D1:0
A2: Thursday B2: 6/29/06 C2: 8 D2: 0
A3: Friday B3: 6/30/06 C3: 7 D3: 1
A4:Saturday B4: 7/1/06 C4: 8 D4: 4


From this list, in a specific cells It would list the following:

6/28/06 to 06/30/06 23 Straight Time Hours & 1 Overtime Hour
7/1/06 to 07/01/06 8 Straight Time Hours & 4 Overtime hours

The outcome could be listed on a table. Doesn't really matter. Just
want it automatic so I don't have to go calculate it each month.

Can you help?

thanks!


--
seanrigby
------------------------------------------------------------------------
seanrigby's Profile: http://www.excelforum.com/member.php...o&userid=34133
View this thread: http://www.excelforum.com/showthread...hreadid=556500



  #6   Report Post  
Posted to microsoft.public.excel.misc
seanrigby
 
Posts: n/a
Default Totaling a Sum for every 7 days


Barb,

I have as follows:

Column A is the name of the day
Column B is the actual date
Column C is the strait time hours
Column D if my overtime hours

From this list, I need to know when each Saturday begins
and then total each straight time and overtime hours

For example:

A1: Wednesday B1: 6/28/06 C1: 8 D1:0
A2: Thursday B2: 6/29/06 C2: 8 D2: 0
A3: Friday B3: 6/30/06 C3: 7 D3: 1
A4:Saturday B4: 7/1/06 C4: 8 D4: 4


From this list, in a specific cells It would list the following:

6/28/06 to 06/30/06 23 Straight Time Hours & 1 Overtime Hour
7/1/06 to 07/01/06 8 Straight Time Hours & 4 Overtime hours

The outcome could be listed on a table. Doesn't really matter. Just
want it automatic so I don't have to go calculate it each month.

Can you help?

thanks!


--
seanrigby
------------------------------------------------------------------------
seanrigby's Profile: http://www.excelforum.com/member.php...o&userid=34133
View this thread: http://www.excelforum.com/showthread...hreadid=556500

  #7   Report Post  
Posted to microsoft.public.excel.misc
seanrigby
 
Posts: n/a
Default Totaling a Sum for every 7 days


Barb,

I have as follows:

Column A is the name of the day
Column B is the actual date
Column C is the strait time hours
Column D if my overtime hours

From this list, I need to know when each Saturday begins
and then total each straight time and overtime hours

For example:

A1: Wednesday B1: 6/28/06 C1: 8 D1:0
A2: Thursday B2: 6/29/06 C2: 8 D2: 0
A3: Friday B3: 6/30/06 C3: 7 D3: 1
A4:Saturday B4: 7/1/06 C4: 8 D4: 4


From this list, in a specific cells It would list the following:

6/28/06 to 06/30/06 23 Straight Time Hours & 1 Overtime Hour
7/1/06 to 07/01/06 8 Straight Time Hours & 4 Overtime hours

The outcome could be listed on a table. Doesn't really matter. Just
want it automatic so I don't have to go calculate it each month.

Can you help?

thanks!


--
seanrigby
------------------------------------------------------------------------
seanrigby's Profile: http://www.excelforum.com/member.php...o&userid=34133
View this thread: http://www.excelforum.com/showthread...hreadid=556500

  #8   Report Post  
Posted to microsoft.public.excel.misc
Barb Reinhardt
 
Posts: n/a
Default Totaling a Sum for every 7 days

Column A is the name of the day
Column B is the actual date
Column C is the strait time hours
Column D if my overtime hours


Let's say your date are in B2:B5
The straight time hours are in C2:C5
Your overtime hours are in D2:D5
The workweek is in E2:E5 (calculated)
In E2 enter: =WEEKNUM(B2+1,1) and copy down
Column F are your cumulative straight time hours for the month (calculated)
In F2 enter: =SUMPRODUCT(--(E$2:E2=E2),(C$2:C2)) and copy down.
Column G are you cumulative overtime hours for the month
G2: =SUMPRODUCT(--(E$2:E2=E2),(D$2:D2))

This is a basically the same thing but with different column IDs.

"seanrigby" wrote:


Barb,

I have as follows:

Column A is the name of the day
Column B is the actual date
Column C is the strait time hours
Column D if my overtime hours

From this list, I need to know when each Saturday begins
and then total each straight time and overtime hours

For example:

A1: Wednesday B1: 6/28/06 C1: 8 D1:0
A2: Thursday B2: 6/29/06 C2: 8 D2: 0
A3: Friday B3: 6/30/06 C3: 7 D3: 1
A4:Saturday B4: 7/1/06 C4: 8 D4: 4


From this list, in a specific cells It would list the following:

6/28/06 to 06/30/06 23 Straight Time Hours & 1 Overtime Hour
7/1/06 to 07/01/06 8 Straight Time Hours & 4 Overtime hours

The outcome could be listed on a table. Doesn't really matter. Just
want it automatic so I don't have to go calculate it each month.

Can you help?

thanks!


--
seanrigby
------------------------------------------------------------------------
seanrigby's Profile: http://www.excelforum.com/member.php...o&userid=34133
View this thread: http://www.excelforum.com/showthread...hreadid=556500


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
No. of days split into periods Brian Ferris Excel Discussion (Misc queries) 3 January 31st 06 03:29 PM
Calendar Days and Option Buttons Andy Excel Discussion (Misc queries) 0 January 10th 06 09:50 PM
Working days left in the month compared to previous months qwopzxnm Excel Worksheet Functions 8 October 24th 05 08:00 PM
Please help!! Vacation Accrual Formula MissNadine Excel Worksheet Functions 1 August 19th 05 02:32 AM
Vacation Accrual Formula MissNadine Excel Worksheet Functions 0 August 18th 05 04:02 AM


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