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

Newbie - Eliminate Duplicate GroupField

Status
Not open for further replies.

Andyamstrad

Programmer
May 12, 2004
2
IE
Can anyone help??

Have a report with the following Columns:

Product Total ComplaintType Total Name

ABC 5 Other 3 fred1
fred2
fred3

ABC 5 Poor Customer Service 2 john1
john2

EFG 1 Poor Customer Service 1 dave

The report is grouped on product then complaint type.

It should display :

Product Total ComplaintType Total Name

ABC 5 Other 3 fred1
fred2
fred3

Poor Customer Service 2 john1
john2

EFG 1 Poor Customer Service 1 dave

How can this be done, via a formulae???

Many thanks in advance.
 
you could place the following formula in the "conditional suppress" for the field displaying "Product"

Not PreviousIsNull({Table.Product}) and previous({Table.product}) = {Table.Product}

that should do it

Jim Broadbent

The quality of the answer is directly proportional to the quality of the problem statement!
 
It looks to me like you have the groupname for the Product group dragged into the group header for complaint type. Instead of doing this, display the Product group name in Group Header #1 along with the group summary, and then go to the section expert->GH#1 and check "Underlay Following Sections."

I'm not sure why the GH#1 summary (5) is appearing in the second group #2 instance though--is this an inserted summary or a running total? It looks like an inserted summary would work and it would avoid the duplication.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top