Reputation:
I know this is a programming site so, sorry If It's not that place to ask this question... I don't know where can I ask that...
I have a column in Excel and in every cell I have a set of worlds that Separated by a comma.
How can I count and get an array of the result of the count
My expected result is (Or something that look like that to be able to create a nice Graph)
Upvotes: 1
Views: 129
Reputation: 49998
Use COUNTIF
with wildcards - something like this:
=COUNTIF($A$1:$A$6,"*"&C2&"*")
Upvotes: 3