We have created a report with Crystal 9. The report has 3 groupings. The third grouping footer has summary of a amount column. The third group has to be suppressed completely if the the summary is "0". How can we achieve this with Crystal 9.
If you are using a group selection formula to accomplish this, your formula should look like this:
if {?zeroBalance} = "Yes" then
Sum({@curAmount}, {@groupopt3})<> 0 else
(Sum({@curAmount}, {@groupopt3}) =
sum({@curAmount}, {@groupopt3})
If the user says "Yes" (eliminate groups with zero balance) then this will display only those groups with balances <> 0. If {?zeroBalance} <> "yes" then no group select will be made, i.e., all groups will display.
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.