Thanks a lot for helpHi,
You need to enter wildcard like:
=COUNTIF($A$1:$A$10,"*"&D1)
Regards,
Thanks for clear explanation.....Since you suggest that you might like to know why your current formula fails:
The criterion "<=10" in
= COUNTIFS(score, criterion)
has a special meaning, namely return a count of numbers less than or equal to 10. The wildcard "*" in @Khalid NGO 's formula causes the count function to return the count of strings ending in "<=10".
Note: Searching for "*=10" will return ">=10" as well as "<=10" or "=10".