Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Supress group header on drill-down

Status
Not open for further replies.

zootweller

Technical User
Oct 7, 2001
46
GB
Hi

Anyone have an idea on how to either supress a group header or its contents so they do not appear on drill-down?
 
Zootweller,

In your report header, place the following formula:

//{@x2}
whileprintingrecords;
numbervar x2 := 2;

In the group header:

//{@x1}
whileprintingrecords;
numbervar x2 := x2 + 1;

In the group header format section, conditionally suppress using:

{@x1} = 1;

Naith
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top