Automated solution required

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a worksheet which is a timesheet and contains time recorded against projects for a week, broken down by Clients and Project Codes against which time gets recorded for each day of the week; in the last column the time is totalled up for the week

Basically I want to be able to be able to automate the process to find out how much time has been allocated to each Client

Is this best done via a macro or by some other method
 
Hi
have a look at the sUMIF function for this

--
Regards
Frank Kabel
Frankfurt, Germany

Miller said:
I have a worksheet which is a timesheet and contains time recorded
against projects for a week, broken down by Clients and Project Codes
against which time gets recorded for each day of the week; in the last
column the time is totalled up for the week.
Basically I want to be able to be able to automate the process to
find out how much time has been allocated to each Client.
 
Miller said:
I have a worksheet which is a timesheet and contains time recorded against
projects for a week, broken down by Clients and Project Codes against which
time gets recorded for each day of the week; in the last column the time is
totalled up for the week.

Basically I want to be able to be able to automate the process to find out
how much time has been allocated to each Client.

Is this best done via a macro or by some other method?

Hi Miller,

Assuming your timesheet is layed out something like this,

Date Clients Project_Codes Time_(Hrs)
5/1/2004 ABC Company PC100 3
5/2/2004 ABC Company PC120 5
5/3/2004 XYZ Company PC300 4
5/4/2004 XYZ Company PC300 2
5/5/2004 Smith Corporation PC400 3

try,

In cell A20 put ABC Company
In cell A21 put XYZ Company
In cell A22 put Smith Corporation

in cell B20 put this formula and copy down:

=SUMIF($B$2:$B$6,A20,$D$2:$D$6)

and you should get something like this:

ABC Company 8
XYZ Company 6
Smith Corporation 3

Hope this helps!
 

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

Similar Threads


Back
Top