Hi what's the easiest way to add IF contains?
I have a sheet with many different rows with long string values and I'd like to get a total of how many times a particular value within the string appears.
For example:
Value 1: "ABCDED"
Value 2: "ABCDDD"
I'd like a count of how many times D appears in that range of values. (it should be 5).
I've started with something like: =IF(CONTAINS("D", {Values Range 1}), "1", "0")
but that doesn't seem to work correctly as it's not summing them. I've even tried wrapping it in SUM. Any ideas?