mrstaggart
MIS
I think this is close to what was in thread "thread68-1595108", but not quite.
I have a work page from which 3 different people are assigned orders to fill and, as they complete them, they enter the text result of its status - "D" for done, "M" for missing or "H" for hold. I want to summarize this on a separate sheet in total (total count of M's) and detail by person.
So, if my work data looks like this:
ColA ColB ColC
Order# Assigned Status
2010-1 Bob D
2010-2 Bob M
2010-3 Bob D
2010-4 Mike D
2010-5 Mike D
2010-6 Tom H
and my summary is structured like this:
ColA ColB ColC ColD
Total Done (D) Missing(M) Hold(H)
Bob 3 2 1
Mike 2 2
Tom 1 1
What formula can I use to get the summary total in column B?
Then, how to get the detail per person?
I've got the summary by result - M, D, H - but can't get it per person.
I've tried array formula in summary sheet cell B2:
=IF('workdata'!$B$2:$B$100 = 'Summary'!$A3, COUNTA('workdata'!$C$2:$C$100), "0")
which counts all results into Bob's column; his summary total is 6 and Mike & Tom are blank.
I've tried DCountA but can't make it work.
I've tried
=COUNTIFS('Day 1'!E5:E81, A8,'Day 1'!$F$5:$F81, istext)
but get 0. I've replaced the "istext" with "<>""" but that gave an error.
Your help and shared knowledge is greatly appreciated.
I have a work page from which 3 different people are assigned orders to fill and, as they complete them, they enter the text result of its status - "D" for done, "M" for missing or "H" for hold. I want to summarize this on a separate sheet in total (total count of M's) and detail by person.
So, if my work data looks like this:
ColA ColB ColC
Order# Assigned Status
2010-1 Bob D
2010-2 Bob M
2010-3 Bob D
2010-4 Mike D
2010-5 Mike D
2010-6 Tom H
and my summary is structured like this:
ColA ColB ColC ColD
Total Done (D) Missing(M) Hold(H)
Bob 3 2 1
Mike 2 2
Tom 1 1
What formula can I use to get the summary total in column B?
Then, how to get the detail per person?
I've got the summary by result - M, D, H - but can't get it per person.
I've tried array formula in summary sheet cell B2:
=IF('workdata'!$B$2:$B$100 = 'Summary'!$A3, COUNTA('workdata'!$C$2:$C$100), "0")
which counts all results into Bob's column; his summary total is 6 and Mike & Tom are blank.
I've tried DCountA but can't make it work.
I've tried
=COUNTIFS('Day 1'!E5:E81, A8,'Day 1'!$F$5:$F81, istext)
but get 0. I've replaced the "istext" with "<>""" but that gave an error.
Your help and shared knowledge is greatly appreciated.