Sum of Hours Per Month

Z

Zachary Baker

I have been given a data set which contains work hours and dates in the form
of mm/dd/yy. I am trying to sum all the hours worked in each month. A
co-worker suggested I use sumproduct but I'm still not able to achieve the
process. Additionally, the data crosses over years, so I am not quite sure
how to create a fomula that takes the year into account. Any help would be
great. Thanks much.
 
B

Bob Umlas

Using a pivot table grouped by months and years would be the most
straightforward.
 
B

Bernie Deitrick

Zachary,

For example, to get the values for January of this year, with dates in column A and hours in B:

=SUMPRODUCT((A1:A2000>=DATE(2006,1,1))*(A1:A2000<DATE(2006,2,1))*B1:B2000)

Easier would be a pivot table, with the data grouped based on months.

HTH,
Bernie
MS Excel MVP
 
B

bpeltzer

I'll suppose you have a date in column A and hours in column B.
To calculate the hours worked in May '06:
=sumif(a:a,">="&date(2006,5,1),b:b)-sumif(a:a,">="&date(2006,6,1),b:b)
The first part adds all hours worked on/after May 1 '06; the second part
subtracts out all hours worked on/after June 1 '06, leaving only those worked
during the month of May '06.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top