Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

need to use a negative LIKE statement

Status
Not open for further replies.

progers

IS-IT--Management
Oct 22, 2001
4
US
Hi everyone:

In the past I've used LIKE statements in my selection formulas. For example,

{Clinical_Transaction.proc_code} like '???DREVIEW'

Now I need to do the opposite. I have tried the following:

{Clinical_Transaction.proc_code} not like '???DREVIEW'

{Clinical_Transaction.proc_code} <> like '???DREVIEW'

In one case, CR tells me I'm missing a ). In the other case, it tells me i need a boulean or some such.

Any ideas?

Thanks,
Paul
 
I suppose you could try this:

Not({Clinical_Transaction.proc_code} like &quot;???DREVIEW&quot;)

Hope this helps
Jim

 
That did it!!! Excellent. Thanks Jim.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top