You can format the fields individually on the report but going into format and saying "Supress if duplicated". You can also do more complex formula if you use the formula button to the side of suppress.
Thank you for your response, however, this solution only suppresses the specific field form displaying more than once. The rest of the record still displays.
I do not want the duplicate detail record to show at all.
Ok - I'm newer at this newsgroup stuff - let me have another try.
Go to format section under the formula editor for suppress. if the duplicated information is technically a "distinct" id, you can use the formula
not (previousisnull({gift.giftid})) or {gift.giftID} = previous(gift.giftid})
This requires the report to be sorted (at some level) on the gift id.
This will suppress the entire duplicate record based on a duplicated field. This will not work however, if the duplicate data is not "distinct" (ie. two people with $100 gifts will cause the second person to be suppressed when they shouldn't).
- Chasidy
If all of the fields used by the report are duplicates, then you can go to the Database menu and use the Select-Distinct option at the bottom.
If not all are duplicates, you can group on the duplicate field(s) and then suppress the details, moving all of the display fields to the GF. Ken Hamady, On-site Custom Crystal Reports Training & Consulting
Public classes and individual training.
Expert's Guide to Formulas / Guide to Crystal in VB
Just a word of caution about suppressing which you probably already know.
Just because the fields are suppressed does not mean that they are excluded from summary calculations. It merely stops them from being displayed/printed.
Create a formula that combines (concatenates) these two fields, and group on the formula. Ken Hamady, On-site Custom Crystal Reports Training & Consulting
Public classes and individual training.
Expert's Guide to Formulas / Guide to Crystal in VB
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.