View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Rick Rothstein \(MVP - VB\) Rick Rothstein \(MVP - VB\) is offline
external usenet poster
 
Posts: 2,202
Default If (A1 = "ValueA" & C1 = "ValueB") return the quantity of matches

Using data looking something similar to below....

Column A Column B Column C
Red 1 Santa
Blue 1 Santa
Red 1 Elf

What formula do I use if I want to count the amount of times Col A = Red
and
Col C = Santa?

Had no luck so far using variations of....
=SUM(IF(Data!H:H="Red",IF(Data!J:J="Santa",1,0)))


Try this...

=SUMPRODUCT((A1:A1000="Red")*(C1:C1000="Santa"))

Use a number larger than the largest row of data you will ever have in place
of my 1000s.

Rick