Forum Discussion

CParker's avatar
CParker
Copper Contributor
Mar 04, 2019
Solved

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 one listed in their certifications (column E).  If it is, "yes" would go in column F, if it isn't, "no" would go in column F.

Once I determine how to identify if they are qualified, I will need to determine if they are available or currently booked.

 

DATECOURSELOCATIONINSTRUCTORCERTQUALIFIED?
05/08/191Pittsburgh11, 2, 3, 4 
04/21/191Pittsburgh11, 2, 3, 4 
05/22/194Pittsburgh21, 2 
03/01/191Pittsburgh31, 2, 3  
04/05/193Pittsburgh31, 2, 3  
03/08/192Pittsburgh31, 2, 3  
06/24/192Pittsburgh31, 2, 3  
05/07/191Virginia51, 2, 3, 4 
05/01/194Virginia51, 2, 3, 4 
05/04/191Virginia61 
03/15/193Virginia91, 2, 3  
04/21/192Maryland101, 2, 3, 4 

 

  • Assuming the certifications are not more than 9, you can use this formula starting in F2:
    =IF(ISNUMBER(FIND(B2,E2)),
    “Yes”,
    “No”)

3 Replies

  • Twifoo's avatar
    Twifoo
    Silver Contributor
    Assuming the certifications are not more than 9, you can use this formula starting in F2:
    =IF(ISNUMBER(FIND(B2,E2)),
    “Yes”,
    “No”)
    • CParker's avatar
      CParker
      Copper Contributor

      Thank you very much!  That did exactly what I needed it to do. :)

Resources