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

Crystal V8.5

Status
Not open for further replies.

Gagsy

Technical User
Oct 16, 2002
56
0
0
GB
I am tryig to use the Not Like statement but receive the error "The remianing text does not apear partof the formula".

I need to be able to hide a field if the value is not like"1-1-82*"

Would appreciatre any help on this
 
use this in the suppression formula

Code:
Left({MyTable.StringField},6) <> "1-1-82"

HTH

Gary Parker
MIS Data Analyst
Manchester, England
 
Posting your entire formula would help. However, right click on the field in your report; select format field; in the common tab, click on x+2 beside suppression and try entering the formula:

not({yourfield} startswith "1-1-82")

That should do the trick.
 
Thanks for the samples.

The Not(X Startswith Y) worked great.

I had earlier ttried the "Not Startswith" syntax.

Thanks again - I can go home now.

Cheers
Gagsy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top