in excel how do i - countif(A:A like "1234" AND C:C=4)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to count the number of rows in a spreadsheet where a specific value is
contained within one column and a specific value is contained in a second
column
for example
count the number of rows where column A contains BET and column C contains 4
this would match for row 3 if A3 is "A BET MADE" and C3 = 4
it was also match for row 5 if A3 is "BET Voic" and C3 = 4

since there are thosands of rows i do not want to loop through all
 
Hi

Try
=SUMPRODUCT((ISNUMBER(FIND("BET",$A$1:$A$1000)))*($C$1:$C$1000=4))
 

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