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

Null Value Capture to Print on Reports

Status
Not open for further replies.

mjm19

Technical User
Apr 22, 2003
33
US
Using CR 7.5 trying to capture results in a hospital setting where the value of a test is pending. The result field from the database is blank:

Pt Number Test Result

12345 TSH 1.50
12346 TSH
12347 TSH 5.00

I've tried using different formulas saying the result = Null, "", " ", but can't get patient 12346 to only show up on the report. Any ideas ??

Thanks
 
Try:

IsNull(result) or
result = '' or
Len(result) = 0

Reebo
UK

Please Note - Due to current economic forcast and budget constraints, the light at the end of the tunnel has been switched off. Thank you for your cooperation.
 
Try this in your record selection formula

IsNull({MyTable.MyField})

HTH

Gary Parker
MIS Data Analyst
Manchester, England
 
The Scottish server must be faster than mine Reebo.

[smile2]

Gary Parker
MIS Data Analyst
Manchester, England
 
I'm not in Scotland anymore. I'm contracting in Kettering (east midlands) now. [smile]

Reebo
UK

Please Note - Due to current economic forcast and budget constraints, the light at the end of the tunnel has been switched off. Thank you for your cooperation.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top