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

IN Number Formular

Status
Not open for further replies.

bigdavelamb

Programmer
Jun 11, 2003
97
GB
Hi

I have a sql statement similar to this:


Select * from table where myNumberField in (1,2,5,10,20)

Can anyone convert this to Crystal as IN does not seem to work?

Thanks

dave
 
If you want a formula:

{MyField} in [1,2,5,10,20]

If those are strings, surround each value with double quotes.

Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports

"What version of URGENT!!! are you using?
 
In Select expert enter

myNumberField in [1,2,5,10,20]

Generally where SQL uses () Crystal uses []

Ian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top