Here's my dilemna - I need to see the duplicate records for a person - both the original AND the duplicate. This person may have multiple records, but only 1 is duplicated, and those are the only ones I want to see to determine if it is a true duplicate and remove the record from the database.
I'm using CR8.5 and an Informix database.
The records are grouped by ID#(record.partid), with fields record.recordid, record.merchantid, record.checkdate, record.checknumber, and record.checkamount. The fields that must match to be considered a dulicate are partid +checknumber+checkdate+checkamount+merchantid. Each would be assigned a unique recordid upon creation of that record, but they must match all criteria to be considered a true duplicate.
Currently, it looks like this:
145789
RCID1 MCID1 05/01/07 5545 $55.69
RCID2 MCID2 05/02/07 5546 $100.50
RCID3 MCID2 05/02/07 5546 $100.50
RCID4 MCID3 05/05/07 5592 $75.00
When I try to suppress all that are not duplicates, I get this (using next or previous):
145789
RCID3 MCID2 05/02/07 5546 $100.50
I would like to see:
145789
RCID2 MCID2 05/02/07 5546 $100.50
RCID3 MCID2 05/02/07 5546 $100.50
All help to this long (I know, sorry) request is greatly appreciated!!
I'm using CR8.5 and an Informix database.
The records are grouped by ID#(record.partid), with fields record.recordid, record.merchantid, record.checkdate, record.checknumber, and record.checkamount. The fields that must match to be considered a dulicate are partid +checknumber+checkdate+checkamount+merchantid. Each would be assigned a unique recordid upon creation of that record, but they must match all criteria to be considered a true duplicate.
Currently, it looks like this:
145789
RCID1 MCID1 05/01/07 5545 $55.69
RCID2 MCID2 05/02/07 5546 $100.50
RCID3 MCID2 05/02/07 5546 $100.50
RCID4 MCID3 05/05/07 5592 $75.00
When I try to suppress all that are not duplicates, I get this (using next or previous):
145789
RCID3 MCID2 05/02/07 5546 $100.50
I would like to see:
145789
RCID2 MCID2 05/02/07 5546 $100.50
RCID3 MCID2 05/02/07 5546 $100.50
All help to this long (I know, sorry) request is greatly appreciated!!