Forum Discussion
CParker
Mar 04, 2019Copper Contributor
IF/THEN help
Hi - I think I need an if/then formula, but I am not 100% positive. I am creating a spreadsheet to track trainer certifications and availability. I need to determine if the course (column B) is o...
- Mar 04, 2019Assuming the certifications are not more than 9, you can use this formula starting in F2:
=IF(ISNUMBER(FIND(B2,E2)),
“Yes”,
“No”)
Twifoo
Mar 04, 2019Silver Contributor
Assuming the certifications are not more than 9, you can use this formula starting in F2:
=IF(ISNUMBER(FIND(B2,E2)),
“Yes”,
“No”)
=IF(ISNUMBER(FIND(B2,E2)),
“Yes”,
“No”)