COUNTIF formula help

I'm trying to create a formula that will count if a specific value is in a cell and the formula works as long as the cell only has 1 value in it. But I have some cells that contain more than 1 value, how do I get it to work for those cells?

Ex) There are 4 cells with the word Red. 3 cells with the word Blue and 3 cells with both Red and Blue - so the count for Red should be 7 and the count for Blue should be 6

=COUNTIF([Issues]:[Issues], "Red") - Returns a value of 4

=COUNTIF([Issues]:[Issues], (HAS([Issues]:[Issues], "Red"))) - Returns a value of 0

Tags:

Best Answer

Answers