Count If

  • Thread starter Thread starter Fiona
  • Start date Start date
F

Fiona

Hi
I'm trying to get the following formula to work:
COUNT(IF(Page1!$J$5:$J$10000,$H$1,IF(Page1!$D$5:$D$5000,"*"&A10&"*",0)))

But it isn't. I'm trying to count the cells on page 1 that have H in
coloumn J, but also contain A10 in coloumn D.

I've done th {} at each end but it doeasn't work.

Any help would be very much appreciated.

Thanks
Fiona
 
Fiona,

Try this

=COUNT(IF(Page1!$J$5:$J$10000=$H$1,IF(ISNUMBER(FIND(A10,Page1!$D$5:$D$5000)),1)))

still array entered.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
Thanks Bob but that didn't seem to work

Bob Phillips said:
Fiona,

Try this

=COUNT(IF(Page1!$J$5:$J$10000=$H$1,IF(ISNUMBER(FIND(A10,Page1!$D$5:$D$5000)),1)))

still array entered.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
Care to elucidate, it worked in my test.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
In your original post you saidIf you actually did that, do this:
remove the {} and then hold down the ctrl + shift keys and touch the enter
key>let go.
Now you should see the {} and the formula should work.
 
Sorry Bob, I've been looking at it again and the problem is that in my
previous formula I used the 'contains' feature ("*"&A10&"*") but with your
formula the match needs to be exact. I've tried to enter the 'contains' bit
but this does not give the correct result.

I want to count D5:D5000 if it contains A10.

Thanks again for your help

Fiona
:)
 
I did read your post and that is why I used Find, so I cater for contains.

It might be a case problem, try changing FIND to SEARCH.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
Thankyou, that solved it.

Bob Phillips said:
I did read your post and that is why I used Find, so I cater for contains.

It might be a case problem, try changing FIND to SEARCH.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

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