Query to produce boolean

PG2015

Registered User.
Local time
Today, 23:27
Joined
Feb 16, 2015
Messages
21
Can anyone help me with this?

Produce a query that returns a yes or no (Y or N) field if other text field contains particular text (with wildcard on either side).

Idea is to have a column for each preset word.

Hope that makes sense, Access newbie :banghead:
 
Hello PG2015, please give some sample. The simplest would be.
Code:
NewColumn: IIF(InStr(theField, "theValue") <> 0, "YES", "NO")
 
Brilliant, brilliant - thanks for your help! Works a treat.

Cheers
 

Users who are viewing this thread

Back
Top Bottom