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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CRXI, suppress duplicate group header/force drilldown

Status
Not open for further replies.

mgason

Technical User
Feb 6, 2003
158
AU
Hi,
this is really a two part question.
1.
how can I have a filed in a group header only appear if it is not the same as in the previous group. basically a suppress if duplicated but for the group header.

2.
I have 4 groups, the last is hidden, drill down OK.
clicking an item in group 3 opens a drilldown to group 4. Is it possible to have it drill down all the way to details without clicking again and opening another page? So all the information is in one drilldown.

thanks
mark
 
1) Place the following formula in the group section (I'm assuming a string field here):

whileprintingrecords;
stringvar curr;
stringvar prev := curr;
curr := {table.field}//whatever field you want to conditionally suppress

Then select the field->format field->suppress->x+2 and enter:

whileprintingrecords;
stringvar curr;
stringvar prev;
curr = prev //note no colon

2) Instead of hiding group #4 and the details section, use conditional suppression on both GH#4 and the details section, with a formula like:

drilldowngrouplevel < 1

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top