I want to count all the unique values in an Excel column that contain a certain string. For instance, say I have this in my column:
strA
strB
strA
strC
diffA
diffB
strC
If I give this theoretical function that I'm writing a value of "str," it will count the unique values containing "str", and give me back the number 3.
Any suggestions? The web is full of half-answers to this problem, but I've spent an hour trying to find a clear solution, so I thought StackOverflow might benefit from the question.