Searching a field for a text string

  • Thread starter Thread starter Steve Welman
  • Start date Start date
S

Steve Welman

Hi

Is there a function whereby I can saearch a text string in a field for a
certain character, similiar to the excel find function?

I have a field in the table consisting of policy numbers, occasionaly these
numbers will have a slash in them, I need to determine which records have /
in them and stop processing them, how do I go about this?

Regards

Steve
 
Steve said:
Is there a function whereby I can saearch a text string in a field for a
certain character, similiar to the excel find function?

I have a field in the table consisting of policy numbers, occasionaly these
numbers will have a slash in them, I need to determine which records have /
in them and stop processing them, how do I go about this?


If all you want is to check if the field contains a / then
it might be more intuitive to use the Like operator. E.g.
In the field's criteria in a query:
Not Like "*/*"
 
Back
Top