I've got a report in CR 9. In it I've got 3 nested groups. In my data, sometimes there's no string data to be displayed in the 3rd group's name, but there's other data that's needed for other parts of the report.
My problem is that I can't get that group footer to suppress when there's nothing for the group footer name to display. I've got a conditional suppress formula that looks like this:
The first part of the IF statement works just as expected. However the last part (after the OR) which I just recently added, doesn't suppress the footer when the group name is null. I've also tried to remove the first part and just have the part after the OR as the only condition with the same results - footer won't suppress. Any ideas?
Thanks,
Dan
My problem is that I can't get that group footer to suppress when there's nothing for the group footer name to display. I've got a conditional suppress formula that looks like this:
Code:
if (GroupName ({Job.Drawing})<>"" and DrillDownGroupLevel<>2) or (GroupName ({Job_Operation.Operation_Service})="") then
true
else
false
The first part of the IF statement works just as expected. However the last part (after the OR) which I just recently added, doesn't suppress the footer when the group name is null. I've also tried to remove the first part and just have the part after the OR as the only condition with the same results - footer won't suppress. Any ideas?
Thanks,
Dan