Hello,
In my source sheet I have a multiselect column called "Problem Code to be Updated". I am trying to use the reference sheet in the screenshot to identify if the multiselect cell in the source sheet has any of the problem codes where the "Technician Assigned Problem Code" is "Yes". The dropdown values are all taken from the "Problem Description" column from the reference sheet.
I have tried the below formula, but it only returns a 1 when there is a single option selected in the multiselect column. It returns a 0 if there is a problem code where "Technician Assigned Problem Code" is "Yes", but there are multiple values selected.
=IF(COUNTIFS({Problem Codes | Tech Code}, "Yes", {Problem Codes | Description}, HAS(@cell , [Problem Code to be Updated]@row )) > 0, 1, 0)