We are a group of users of Blackbaud products and are not affiliated with Blackbaud. We'd love to have you join our community to help and be helped in getting the most from your Blackbaud software.
Register now to join us to get independant advice on your system, connect with 3rd party consultants to help you maximize your database and have a real alternative to the official Blackbaud website.
I know you can suppress a section if it is blank, but I'm wondering if I can suppress that section if there is only one record included in the subtotal. If you can see the attached picture, I've got group totals that only include one record and this total gets displayed in 2 different groups. I've grouped first by fund, and then by credit card type but a lot of times we'll only have say 1 visa donation per fund. I want these subtotals because we need them to show our memorial donations, but is there any way to suppress the other totals that only have 1 amount in them?
Thanks, I really don't know a whole lot about Crystal Reports (i.e. nothing) so any help is greatly appreciated!!
Yes, it's fairly easy. All you need to do is go into Format Section (Section Expert in XI) and click on the conditional suppression for that section. Then you'll want to use a formula like
Code:
Count({ID Field}, {Group Field}) = 1
You may want to use DistinctCount() instead of Count().
Drew
__________________ J. Drew Allen
Children's Hospital of Philadelphia
Crystal Reports and SQL Server Consultant
It is better to live your destiny imperfectly than to live an imitation of somebody else's life with perfection.
and is says the running total or something can't be created. I imagine the groupname part is wrong....do I just need the part inside the {}?
I always think formulas should be written if...then...else but now I see that the then...else part is implied in the conditional formatting so that will be REALLY helpful in the future!!
If you're going to use Amount, do not use DistinctCount(). Only use distinct count with fields that should be distinct like ID fields. These will be things like the Constituent ID, the Constituent System Record ID, the Gift ID, or the Gift System Record ID. In your case, you'll probably want to use one of the gift IDs.
Drew
__________________ J. Drew Allen
Children's Hospital of Philadelphia
Crystal Reports and SQL Server Consultant
It is better to live your destiny imperfectly than to live an imitation of somebody else's life with perfection.