WaveyDavey
Programmer
I have a report which works fine but I need to exclude "Invalid" records from the totals. Records are indicated as Invalid by the existence of a record in the "InvalidDets" table. E.g. a user marks a Referral record as invalid and a record is created on the "InvalidDets" table using the Referral number (from the Referral table).
My question is how do I check for these records NOT being present? The RecordSelectionFormula in the Crystal Report uses a parameter and is as follows: "
". I would like to add something like ..."
". Is it possible? If so, how do I achieve it?
I'm using Crystal 8.5 and Visual Basic 6 accessing a SQL 2000 database.
Any advice would be much appreciated.
My question is how do I check for these records NOT being present? The RecordSelectionFormula in the Crystal Report uses a parameter and is as follows: "
Code:
if {?ServiceArea} > 0 then {RefInvolveReq.SW_Area} = {?ServiceArea}
Code:
and there is no record on the InvalidDets table where Referral_Number = {RefInvolveReq.Referral_Num}
I'm using Crystal 8.5 and Visual Basic 6 accessing a SQL 2000 database.
Any advice would be much appreciated.