I have a multi select column "Cost Code." There are currently values in the column that are not within the dropdown list.
For the "Accessory Code" I was able to check and flag these via the following formula where I reference a column in a separate
=IF(CONTAINS([Accessory Type]@row, {A&A Column Selections Range 1}), 0, 1)
However, the same formula for a multi select column does not work. It is returning all values as false.