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!

and not or and not

Status
Not open for further replies.

mwhalen

Programmer
Oct 31, 2000
217
CA
does anyone have any tips for how to construct this and the syntax? I have:

and (not ({ATABLE.OLDS} in ["03", "06"]) or
not ({BTABLE.NEWP} in ["123456", "987654"]))

 
Describe what do you want it to do and we'll be able to help you more.

DjangMan
 
if this is in a record select formula I think this will be VERY slow....using NOT in this fashion
 
It would help if you explained what you want in English. Since you are unsure of the syntax, we don't know for sure how to read what you have written.

You have 2 booleans. Do you want records that meet either or both negative booleans? Your OR seems to mean Either.

Are there other conditions (since it starts with AND)? Ken Hamady, On-site/Phone Crystal Reports Training/Consulting
Quick Reference Guide to using Crystal in VB
 
Hi,

Just out of interest:

(not x or not y) is the same as not(x and y) !!

Geoff
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top