Count Function

M

Mickey

I need to be able to count an item if a key word is in a different columns.

ex: Count the cells that contain "F17000" (Columns B & C) only if it is "Out
of Warranty" (Column A). Should return the value 2

Column A Column B Column C
Row 1 In Warranty F17000 1085730
Row 2 Out Of Warranty 1085730 F17000
Row 3 Out Of Warranty F17000 1085730


Thanks
 
S

ShaneDevenshire

Hi,

Try
=SUMPRODUCT(--(((B1:B100="F17000")+(C1:C100="F17000"))>0),--(A1:A100="Out of
Warranty"))
 
G

Gary''s Student

=SUMPRODUCT((B1:B100="F17000")*(A1:A100="Out of
Warranty"))+SUMPRODUCT((C1:C100="F17000")*(A1:A100="Out of Warranty"))
 
S

ShaneDevenshire

Hi Gary,

Your formula will double count if row 2 has F17000 in columns B and C.
 
A

Ashish Mathur

Hi,

You can also use the following array formula (Ctrl+Shift+Enter)

SUM(IF(((B1:B3="F17000")+(C1:C3="F17000"))*(A1:A3="Out of Warranty"),1))

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com
 
G

Gary''s Student

Ouch!! & thanks!

Your SUMPRODUCT() handles that case correctly.

This is why, whenever I face complicated criteria, I run away and hide
behind a helper column.
 

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