calculating populated fields from multiple workbooks

  • Thread starter Thread starter Kimmie40
  • Start date Start date
K

Kimmie40

Hi
I have weekly reports and then a monthly report every month. On the
weekly report, engineers enter their change order numbers....on the
monthly report I want a formula that tells me how many change orders
they've had from each worksheet. So if the change orders are in C56,
C57, C58, C59, C60 on the weekly report, but each week the engineer
only had 2 each week. I want there to be a formula that says of the 5
cells from each of the 4 weekly reports, how many were populated with
a change order number.


Thanks
Kimmie40
 
If the cells are blank if they do not contain a change order, then you
can just do:

=COUNT(week1!C56:C60)

or

=COUNTA(week1!C56:C60)

if they are not proper numbers. You can add these for the four weekly
reports to get a composite total, or if the sheets are physically
together in the workbook, you could try this:

=COUNT(week1:week4!C56:C60)

Hope this helps.

Pete
 
If the cells are blank if they do not contain a change order, then you
can just do:

=COUNT(week1!C56:C60)

or

=COUNTA(week1!C56:C60)

if they are not proper numbers. You can add these for the four weekly
reports to get a composite total, or if the sheets are physically
together in the workbook, you could try this:

=COUNT(week1:week4!C56:C60)

Hope this helps.

Pete




- Show quoted text -

Wow....duh...thanks Pete. That was so easy its embarrassing.
 
Sometimes the easy ones are the most elusive !!

Thanks for feeding back.

Pete



- Show quoted text -

Pete, can you do the same for cells populated with text...not numbers?
 
Try it using COUNTA rather than COUNT.

Excel is not very good with 3-D stuff, so if:

=COUNTA(week1:week4!C56:C60)

doesn't work you might have to try it like:

=COUNTA(week1!C56:C60) + COUNTA(week2!C56:C60) + COUNTA(week3!C56:C60)
+ COUNTA(week4!C56:C60)

Hope this helps.

Pete
 

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

Back
Top