Focal Point
How to place report header in sub heading..

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/8381008331

October 21, 2004, 01:51 PM
<Raju>
How to place report header in sub heading..
Hi,

I have a report, which has sub-headings. I would like to supress the main report header, and place that header in Sub-headings. How can I do that.
My report should appear as given below. Please let me know, how to do this.

SAMPLE TEAM REPORT
IT TEAM
EmpNo. First-Name Last-Name Salary
123 Raju Maha
124 Venu Gopal
BUSINESSTEAM
EmpNo. First-Name Last-Name Salary
125 Ramu Garg
126 Laks Anurag
Users
EmpNo. First-Name Last-Name Salary
125 Ramu Garg
128 Anu george
October 21, 2004, 05:40 PM
susannah
This is what you have now, if i understand you.
TABLE FILE THING
HEADING
"SAMPLE TEAM REPORT"
..do stuff
BY GROUPNAME NOPRINT
ON GROUPNAME SUBHEAD
"<GROUPNAME"
..yes??
change it to
TABLE FILE THING
..do stuff
BY GROUPNAME NOPRINT
ON GROUPNAME SUBHEAD
"SAMPLE TEAM REPORT <GROUPNAME"
...is that what you need?
October 24, 2004, 02:22 AM
Piipster
To take that a step further ... it looks like
you want the column-titles in the subhead as
well.

Suppress the column-titles using
fieldname AS ''

Then, put them in the subhead. You'll have to
use stylesheet options to align them to your columns.

TABLE FILE THING
PRINT
EMPNO AS ''
FIRSTNAME AS ''
LASTNAME AS ''
SALARY AS ''
BY GROUPNAME NOPRINT
ON GROUPNAME SUBHEAD
"EmpNo.<+0>First-Name<+0>Last-Name<+0>Salary"
"<GROUPNAME"
....
October 24, 2004, 02:24 AM
Piipster
Sorry, I had two lines in the wrong order.

ON GROUPNAME SUBHEAD
"<GROUPNAME"
"EmpNo.<+0>First-Name<+0>Last-Name<+0>Salary"