Reputation: 29
I'm trying to use a cell value (in F8
) to enter keywords to search for in column B
of another sheet (Sep Miss
which is in the same workbook). I want to return a total count where the input may be a whole or partial match. The $B
is BC
- I am drag copying across rows.
What I've tried:
=CountIf('Sep Miss'!$B:$B, F8)
=CountIf('Sep Miss'!$B:$B, "*F8*")
=CountIF('Sep Miss'!$B:$B, Summary!F8)
=CountIF('Sep Miss'!$B:$B, "Summary!F8")
=CountIF('Sep Miss'!$B:$B, "*Summary!F8*")
Upvotes: 1
Views: 163
Reputation: 96791
You are very close. Something like:
=CountIF('Sep Miss'!$B:$B, "*"&Summary!F8&"*")
Upvotes: 1