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

null value in Crystal 9.2 1

Status
Not open for further replies.

lana123

Programmer
Aug 20, 2003
79
US
Hi,people
My report has to show only the records where field1(string data type)is '' or null(Oracle 9)
I wrote the formula:
field1 = '' or isnull(field1)= true
But this selection doesn't show up in my where close and I cannot get the records I need
I'll appreciate any suggestions

Thanks,

Lana
 
Crystal is odd this way, try the following:

isnull(field1)
or
field1 = ''

The null check goes first, and the = True is redundant.

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top