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!

Formula to exclude empty fields in select expert

Status
Not open for further replies.

jercisneros

Technical User
Jun 3, 2002
38
US
How do I make a formula to exclude null or empty fields in the select expert portion of the report. What I want to do is get the information based on {CUST_ADDR.STATE}, but sometimes this field is empty and want to exclude this on my report.

Any help would be appreciated.
 
Hi !

Try this in your Record selection:

(
not IsNull({CUST_ADDR.STATE})
OR {CUST_ADDR.STATE} = ''
)


/Goran
 
Is the field truly "NULL" or is it blank? There is a difference and how CR will handle it. Goran's suggestion will work and you can also do the opposite in a Details Suppression formula but the opposite logic:
IsNull({CUST_ADDR.STATE})
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top