Which formula works better to find out if a value exists in a multi select dropdown column? I have responses collected from a survey and one of the column was multi-select dropdown list type column. I'm trying to separate out the selection values and adding them in a separate sheet (so using cross sheet reference).
Have tried following variations so far, and they only worked for the first value from the multi select column
=COUNTIFS({Email}, {Email} = Email@row, {committee selection}, CONTAINS("Business/ Content", {committee selection}))
=COUNTIFS({Email}, {Email} = Email@row, {committee selection}, HAS("Business/ Content", {committee selection}))
=COUNTIFS({Email}, {Email} = Email@row, {committee selection}, {committee selection} = "Business/ Content")