- Code: Select all
=MATCH(Y5,Runners!$A$1:$A$50,0)
And wrap an error catch around it to produce a blank cell if the runner isn't in the Runners list:
- Code: Select all
=IF(ISNA(MATCH(Y5,Runners!$A$1:$A$50,0)),"",MATCH(Y5,Runners!$A$1:$A$50,0))
Then the trigger would simply be:
=IF(AN5<>"","BACK-IP","")