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

CR10 grouping level for entire report?

Status
Not open for further replies.

randysmid

Programmer
Dec 12, 2001
801
US
Hi ALL,
I now have a need to create a grouping level for the entire report so that I can improve the functionality of a drill down report. As you know, a grouping level is dependent on a particular field value. So, does anyone have a suggestion on how to accomplish this task?
TIA, Randy
 
You would probably need a value that is repeated on every row on your report, eg DivisionId or CompanyID check on your tables first and see if you can add a high level table to your query.

Mo



Mo
 
You could create a formula that is true of all records, as in:

{table.id} > 0

Or,

whilereadingrecords;
1

Then group on this formula.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top