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

Using record selection to display a 'blank'

Status
Not open for further replies.

petercav

Technical User
Mar 14, 2004
10
AU
Hi everyone,

Is it possible to have a record selection which picks up everything without a value in a file?

Iam using AS400 and what i want to do is display results when there is no value in table 'LHDES'

Any ideas?

thanks
 
In Crystal 8.5, do a left-outer link, so the value need not be there.

Do a test for a field on the file having a null value:
Code:
if isnull({file.accno})
Choose something that can't be null except where the record is missing. That should do it.

Madawc Williams
East Anglia, Great Britain
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top