Hi all,
I'm trying to populate a column that shows whether someone is a supervisory employee. The formula should parse a parallel cell in the job title column for any of the following strings:
"AVP","Manager","Mgr","Spvr","Supervisor","Supv","SVP","V P","Vice Pres","Vice President","VP"
If ANY of these is found, then the value should be "Yes".
The most logical thing I could think of with my somewhat limited formula knowledge was this (where "G2" is a cell in the job title column):
Even for TRUE cases, I didn't see a Yes or No, just sad old #VALUE!
Any ideas?
Thanks,
EB
I'm trying to populate a column that shows whether someone is a supervisory employee. The formula should parse a parallel cell in the job title column for any of the following strings:
"AVP","Manager","Mgr","Spvr","Supervisor","Supv","SVP","V P","Vice Pres","Vice President","VP"
If ANY of these is found, then the value should be "Yes".
The most logical thing I could think of with my somewhat limited formula knowledge was this (where "G2" is a cell in the job title column):
Code:
=IF(FIND(OR("AVP","Manager","Mgr","Spvr","Supervisor","Supv","SVP","V P","Vice Pres","Vice President","VP"),G2,1),"Yes","No")
Even for TRUE cases, I didn't see a Yes or No, just sad old #VALUE!
Any ideas?
Thanks,
EB