HELP! countif

  • Thread starter Thread starter addicted
  • Start date Start date
A

addicted

I'm trying to do a bit of a survey analysis.

Anyways in counting responses this is what i need.

I need to run the COUNTIF function for a particular column, but i only
want this function to run IF the column adjacent to it has a particular
value.

something on the lines of

=IF(Data!C6="Peach",COUNTIF(Data!E:E,"6"),"0")

though this doesn't work... any suggestions???
 
Sounds like an array formula to me

=sum(IF(C6:C600="Peach",IF(E6:E600,"6",1,0)))

enter as ctrl shift enter - NOTE that you need to have an actual range
for this to work (hence my C6:C600 instead of just C or C6)
 
I think you want

=SUMPRODUCT(--(C6:C600="Peach"),--(E6:E600=6))

--
HTH

Bob Phillips

(remove xxx from email address if mailing direct)
 
Hello,

Thanks to the both of you. Couldn't have imagined the response would be
so quick and brilliant.

The SUMPRODUCT array function worked great...Thanks Bob, owe ya a beer
mate. Keep up the good work!

Cheers
 

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