(see edit at end of discussion)
I have a survey that will allow people to choose what they would like to hear about in a workshop. The column is multi-entry so they can put from 1 - 10 choices. I would like to create a report that pulls in the number of times each item is chosen. A regular countIF statement that I'm using isn't working since the cell holds more than one item. What formula or set up, will allow me to see, from the 10 options, how often they occur?
The formula currently in use: =COUNTIF({List}, "Creating a charter")
I would also like to streamline this formula so I don't have to type in the name of the criteria but rather that it look at the cell to the left to see what the criteria is. Here is what the table looks like:
Here is the master sheet:
Edit: I got this to work using an existing formula from another sheet:
=COUNTIFS({List}, CONTAINS(UPPER([Task Name]@row), UPPER(@cell)))
However, I don't understand the use of CONTAINS and UPPER - can any one explain these uses?