Hi! I am looking for some help in creating a formula where if a certain word is found in one column, another word is returned in a second column. For example if "Head", "Nasal", or "Spine" is contained in the Procedure column, "Neuro" is returned in the Clinical Specialty column.
I've tried different variations of this and none were working properly.
=IF(PROCEDURE@row, CONTAINS(" NASAL"), "Neuro")
Ultimately, I'd like to have a 5 or 6 different words in the Clinical Specialty column.
If "Head", "Nasal", or "Spine" in the Procedure column return "Neuro" in Clinical Specialty.
If "Chest" or "Cardiac" in Procedure column return "Cardiothoracic" in Clinical Specialty.
If "Extremity", "Forearm", "Ankle", "Foot" in Procedure column return "MSK" in Clinical Specialty.
Thank you!