Check the INDEX, INDEXW and (more flexible but more complicated to write) PRXMATCH functions.
They all return a positive number when the string is found, else a zero. So you can build :
[pre]
flag = (INDEX(note, "TBI Screening") > 0) ;
[/pre]
This FLAG variable will be 1 or 0.