I have a column named Assigned Staff that is a drop down with staff names. ex. Mike Duplay and Amanda Perry. I have another column named Assigned Amanda. I need Assigned Amanda column to auto fill the word Amanda Perry if (her name) is contained in Assigned Staff. The issue Im running into is if Mike Duplay and Amanda Perry are BOTH selected in Assigned Staff, I dont know how to auto fill a word if both are selected not just Amanda Perry.
Below is what I tried with no luck
=IF(ISNUMBER(SEARCH("Amanda Perry", [Assigned Staff]@row)), "Amanda Perry", "")
Any help is appreciated.
This works ONLY if her name is the ONLY name selected
=IF([Assigned Staff]@row = "Amanda Perry", "Amanda Perry")