Hi all ... I'm using Version 7.
The problem:
Checking the text in an open question, and asking for more detail if certain words are or are not present.
The simple problem:
Just use the textexists command to skip (or not).
The complication:
You guessed it - common misspellings.
So I want to simplify the skip by basing it on a list.
Parent list called yn contains just yes.
Constructed list (will obviously have more lines than this) would have:
Begin Unverified Perl
if(TEXTEXISTS(VALUE "P42","service"))
{
ADD("yn",1);
}
End Unverified
Doesn't work. I have tried:
if(TEXTEXISTS(VALUE("P42","service")))
if(TEXTEXISTS("P42","service"))
Any further ideas? Putting a page of stuff into a skip doesn't fill me with the joy of life.