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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

not like 3

Status
Not open for further replies.

smeyer56

IS-IT--Management
Oct 16, 2002
206
US
Is it possible to create a parameter such as
{field} not like "*string*"
in CR 8.5
 
Yes, but not like that.

Not({field} like "*string*")
 
Or I think you could use:

instr({table.string},"string") = 0

...although Naith's version might be more likely to pass to the SQL statement.

-LB
 
Naith,
That was exactly what i was looking for
Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top