Focal Point
Multiple HEADING in a report

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

June 02, 2008, 10:32 AM
<Cartidge_Specialist>
Multiple HEADING in a report
Hello Devs Big Grin

I'm new posting here, but I am reading this forum several days.

Okey, my problem it's simple: I need show a HEADING in all of the panels of a PDF.

I you test this code:

TABLE FILE CAR
HEADING "ITS A SIMPLE TEST"
PRINT MODEL CAR MODEL CAR MODEL CAR MODEL CAR
BY COUNTRY
ON TABLE PCHOLD FORMAT PDF
END

You can see there are any panels but the HEADING only appears in the first panel.

The real example will have some rows but a lot of columns, and in all of panels I must show the HEADING.

I don't know if I explain correctly, my english is very poor.

In all of cases, thanks a lot.
June 02, 2008, 10:57 AM
GinnyJakes
Unfortunately, the heading goes where you specify it to go. The only way I can think of for you to put it on all the panels is to repeat it.

TABLE FILE CAR
HEADING 
"ITS A SIMPLE TEST <100 ITS A SIMPLE TEST <175 ITS A SIMPLE TEST "
PRINT MODEL CAR MODEL CAR MODEL CAR MODEL CAR
BY COUNTRY
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET BYPANEL ON
END  


Notice the BYPANEL phrase. That will repeat your BYs on each panel.

Also, in your profile signature, could you please add your product suite, releases, and platforms as I have in mine so that we can better help you.

Hope this helps.


Ginny
---------------------------------
Prod: WF 7.7.01 Dev: WF 7.6.9-11
Admin, MRE,self-service; adapters: Teradata, DB2, Oracle, SQL Server, Essbase, ESRI, FlexEnable, Google
June 03, 2008, 02:42 AM
<Cartidge_Specialist>
quote:
TABLE FILE CAR
HEADING
"ITS A SIMPLE TEST <100 ITS A SIMPLE TEST <175 ITS A SIMPLE TEST "
PRINT MODEL CAR MODEL CAR MODEL CAR MODEL CAR
BY COUNTRY
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET BYPANEL ON
END


OMG! I was looking for this a lot of time!

Thank you a lot for the help! Cool
June 03, 2008, 09:09 AM
GinnyJakes
quote:
Also, in your profile signature, could you please add your product suite, releases, and platforms as I have in mine so that we can better help you.


Make sure that you do this, please.


Ginny
---------------------------------
Prod: WF 7.7.01 Dev: WF 7.6.9-11
Admin, MRE,self-service; adapters: Teradata, DB2, Oracle, SQL Server, Essbase, ESRI, FlexEnable, Google