Counting hours spent by a team per project

  • Thread starter The Fool on the Hill
  • Start date
T

The Fool on the Hill

Hello Excel(lent) users,

I want to count the hours that are spent by a particular team on a
particular project. Could you please help me ?

In Column C I have the ID of the project
In Column H I have the ID of the team
The Hours I have in Column J

Could you give me a formula to help me solve this ?

Thank you very much !!
 
J

Jacob Skaria

Change the "project ID" and "team" to whatever it is. If numerics you dont
need double quotes around project id.

=SUMPRODUCT(--(C1:C100="projectid"),--(H1:H100="team"),J1:J100)

If this post helps click Yes
 
J

Jacob Skaria

Change the "project ID" and "team" to whatever it is. If numerics you dont
need double quotes around project id.

=SUMPRODUCT(--(C1:C100="projectid"),--(H1:H100="team"),J1:J100)

If this post helps click Yes
 
R

Roger Govier

Hi

=SUMPRODUCT(($C$2:$C$100="project")*($H$2:$H$100="team ID")*$I$2:$I$100)
assuming you have headers in row 1 and your data starts in row 2.

Adjust ranges to suit your data, and substitute the relevant data for "team
ID" and "project"
 
R

Roger Govier

Hi

=SUMPRODUCT(($C$2:$C$100="project")*($H$2:$H$100="team ID")*$I$2:$I$100)
assuming you have headers in row 1 and your data starts in row 2.

Adjust ranges to suit your data, and substitute the relevant data for "team
ID" and "project"
 
R

Ron Rosenfeld

Hello Excel(lent) users,

I want to count the hours that are spent by a particular team on a
particular project. Could you please help me ?

In Column C I have the ID of the project
In Column H I have the ID of the team
The Hours I have in Column J

Could you give me a formula to help me solve this ?

Thank you very much !!

Assuming that you will have multiple lines per team/project, you could use a
Pivot Table.

Do something like
Drag teams to Rows
Drag projects to Columns
Drag hours to the Data or Value area
--ron
 
R

Ron Rosenfeld

Hello Excel(lent) users,

I want to count the hours that are spent by a particular team on a
particular project. Could you please help me ?

In Column C I have the ID of the project
In Column H I have the ID of the team
The Hours I have in Column J

Could you give me a formula to help me solve this ?

Thank you very much !!

Assuming that you will have multiple lines per team/project, you could use a
Pivot Table.

Do something like
Drag teams to Rows
Drag projects to Columns
Drag hours to the Data or Value area
--ron
 

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