Jun 2, 2004 #1 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
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
Jun 3, 2004 #2 Madawc Programmer Sep 5, 2002 7,628 GB 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 Upvote 0 Downvote
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