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

Not isnull question 1

Status
Not open for further replies.

bld21

Technical User
Mar 1, 2010
49
US
I am using crystal 2008. I am trying to exclude all records with null values in the address 3 field below. I am using the formula below. My feeling is that this should work however I am still returning records with null values in the address 3 field. Any ideas?


{S_SRV_REQ.CREATED}>= Date (2010,01,01) and
not isnull({customer_address.addr_3})

Thanks - Bruce
 
Could the data be blank instead of null?

add:
and (not(trim({customer_address.addr_3})="")

and see if it improves your results.
 
Hmm, that makes sense. I forgot the field may contain blank data and assumed that null would catch the blanks.

Thanks!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top