=COUNTIF(A1:A100,"10.3.200*")
Thanks for the tip, I realized my column was not in text format, that's why it wasn't working. :) But now I have a new problem. I need more than one criterion. ie. 10.3.200.* AND 10.4.100.* both need to be included in this count. countif will only allow me to enter 1 criteria.. Any ways around it?
=COUNTIF(A1:A100,"10.3.200*")+COUNTIF(A1:A100,"10.4.200*")
is one, quick way.
Duh thanks again :) I've got a lot of criteria (over 10) so I hope it all fits..
...consider using the following array formula:
{=SUM(ISNUMBER(MATCH(B1:B10&"*",A1:A100,0))+0)}
where your criteria are in B1:B10. Note: Array
formulas are entered using the Control+Shift+Enter
key combination. The braces, {}, are not entered
by you.
Great.. I'll play with this formula. Thanks a bunch!