Hi
I am using Crystal 9 to read an Notes database through ODBC.
The select distinct records option is selected, yet my report is returning duplicate records (even though I can't see them in the database, I am waiting for the DB desigenr to come in).
Can I select distinct records by using the WhileReadingRecord or EvaluateAfter functions? If so where do I place the formula.
This is my current record selection:
and I also have a formula for identifying duplicated records:
I can't select this field in the record selection.
Please can anyone help - I need this data for the NHS by the 15th April.
Cheers Alex
I am using Crystal 9 to read an Notes database through ODBC.
The select distinct records option is selected, yet my report is returning duplicate records (even though I can't see them in the database, I am waiting for the DB desigenr to come in).
Can I select distinct records by using the WhileReadingRecord or EvaluateAfter functions? If so where do I place the formula.
This is my current record selection:
Code:
{SubShift.PaymentRateCode} in ["NHS Agenda For Change", "NHS Framework Band 3"] and
{BookingSummary.Status} = "Complete" and
{BookingSummary.BookingDate} in Date (2007, 03, 01) to Date (2007, 03, 31)
and I also have a formula for identifying duplicated records:
Code:
if Previous ({BookingSummary.AccountsReference}) = {BookingSummary.AccountsReference} then "Duplicate"
Please can anyone help - I need this data for the NHS by the 15th April.
Cheers Alex