Hello!
I'm trying to count the number of times a word is used in a column. The column allows for multiple values per cell, but my formulas only count one of the words in the cell and not both of them.
For example, the values in the column are Yellow, Green, Blue, Red. There are times when Yellow and Blue need to be selected in one cell. My formula needs to show how many times all of the values are used, but currently they only count one of the values and not both in a single cell.
I've tried the following…
=COUNTIF(SheetName,"Yellow")… this will count Yellow but will not count Blue if used in the same cell.
=COUNTIFS(SheetName,"Yellow")… this will count Yellow but will not count Blue if used in the same cell.
=COUNTM(SheetName,"Yellow")… this counts all of the times "Yellow" could be used in the cell
=HAS(SheetName,"Yellow")… this counts all of the times "Yellow" could be used in the cell
Any help is appreciated to make sure my counts are accurate!