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

Null values to print 2

Status
Not open for further replies.

mjm19

Technical User
Apr 22, 2003
33
0
0
US
Crystal 8.5 / Win 2000

I have a report that prints all the account numbers for patients within a given time frame. Simply put, I just want to see those patients without one. So while printing records I just want the null values to print. Thanks for any help.

mjm19
 
You can probably just suppress the section with the following formula.

not isnull({Field}) or {Field} <>
 
If you just want patients without an account number, you probably would want:

isnull({TABLE.ACCOUNT_NUMBER}) or {TABLE.ACCOUNT_NUMBER} =
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top