(I'm using version 8.5 of Crystal Reports)
I'm trying to suppress the details section if the record is a "duplicate", in that certain fields have the same value, but not every field will necessarily match (it's not a true duplicate record). I was using the the following formula to conditionally supress the details section:
if (Previous ({table.fileda}) = {table.fielda} and Previous ({table.fieldb}) = {table.fieldb} and Previous ({table.field2}) = {table.fieldc}
etc.
but obviously this only works if the order of the fields is such that records that match for fields a, b and c are printed next to each other. This was true originally, but now i need to sort by a field that wont match for the "duplicates" therefore the above formulae doesn't work.
Is there anyway to do this properly?
Any help is much appreciated
I'm trying to suppress the details section if the record is a "duplicate", in that certain fields have the same value, but not every field will necessarily match (it's not a true duplicate record). I was using the the following formula to conditionally supress the details section:
if (Previous ({table.fileda}) = {table.fielda} and Previous ({table.fieldb}) = {table.fieldb} and Previous ({table.field2}) = {table.fieldc}
etc.
but obviously this only works if the order of the fields is such that records that match for fields a, b and c are printed next to each other. This was true originally, but now i need to sort by a field that wont match for the "duplicates" therefore the above formulae doesn't work.
Is there anyway to do this properly?
Any help is much appreciated