Click here to Skip to main content
16,012,223 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am using Crystal Reports for Visual Studio .NET 2003

looks like Drilldowngrouplevel is not supported for my CR version

How can I suppress group footer on drill down?

Any help will deeply appreciated

Kind regards

Nikos
Posted

1 solution

XML
Hi

Problem solved :)

I was using a formula in the first place declaring a variable and assigning a value 1 to it.

<code>whileprintingrecords;
Numbervar RH := 1;</code>

The group footer supposed to be suppressed

<code>whileprintingrecords;
Numbervar RH <> 1</code>

It was not working because the formula was placed in the page header instead of the reports header.

Now it works fine :)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900