Have a 3000+ row MS Excel 2007 worksheet with inconsistent data in the "Description" column (col A).
For example, I have the following in col A;
Fever
Inconsistent Fever
Pain and Fever
AbdPain
Abdominal Pain
Abdom Pain
BrokenFoot
Is it possible to perform a wildcard search of column A and populate column B with "Fever" or "Abdomen Pain" or "NotFeverOrAbdomenPain?", accordingly?
Currently experimenting with the following IF statement;
=IF(SEARCH("*Fever*",A2),"Fever",IF(SEARCH("*Abd Pain*",A2),"Abdomen Pain","NotFeverOrAbdomenPain"))
Appreciate any insight.
For example, I have the following in col A;
Fever
Inconsistent Fever
Pain and Fever
AbdPain
Abdominal Pain
Abdom Pain
BrokenFoot
Is it possible to perform a wildcard search of column A and populate column B with "Fever" or "Abdomen Pain" or "NotFeverOrAbdomenPain?", accordingly?
Currently experimenting with the following IF statement;
=IF(SEARCH("*Fever*",A2),"Fever",IF(SEARCH("*Abd Pain*",A2),"Abdomen Pain","NotFeverOrAbdomenPain"))
Appreciate any insight.