Focal Point
reg. column titles

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

August 17, 2005, 02:31 PM
Dharma
reg. column titles
In my column title, apart from the column names, i need some thing else also to be displayed like:

purchase information
col1 col2 col3 col4 col5

where col1...5 are column names and i want to display 'purchase information' above these columns and center justified. any idea how to do this? (output format is pdf). it might be simple but iam new to webfocus. thanks in advance.
August 17, 2005, 02:35 PM
Leah
A heading would work if it is by page, but if you want it on a by sort item, a subhead, but then you would have to play with column heading names in the subhead as they appear the subhead not below and are page specific.
August 17, 2005, 02:45 PM
Tim J
You can use the COLSPAN option to merge columns.

See this previous post for the details:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/
3141068331/r/2241068331#2241068331

This message has been edited. Last edited by: Kerry,
August 17, 2005, 02:49 PM
Tony A
Dharma,

If you looked down the list a little you would have found this topic that might serve your purpose.

Topic: Merge TITLES or use Heading?

This message has been edited. Last edited by: Kerry,
August 17, 2005, 03:00 PM
Francis Mariani
Unfortunately, these solutions will not work for PDF reports.
August 17, 2005, 04:13 PM
reFOCUSing
You will need to use POSITION or WIDTH to get this to work in PDF output. I have an example of this some place I will try to find it and post it up.
August 17, 2005, 04:35 PM
reFOCUSing
Here is the code, it has two examples how to do it with width and on with position.<br />
Hope this helps.
TABLE 
FILE CAR<br />PRINT<br />     
RETAIL_COST<br /> DEALER_COST<br />BY<br />     CAR
<br />BY<br />  
 BODYTYPE
HEADING<br />"Auto Info<+0>Price Info"
<br /><br />ON TABLE NOTOTAL
ON TABLE PCHOLD F
ORMAT PDF
ON TABLE SET STYLE *
UNITS=IN,
PAGESIZE='LETTER',
LEFTMARGIN=0.25,
RIGHTMARGIN=0.25,
TOPMARGIN=0.25,
BOTTOMMARGIN=0.00,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,$
TYPE=REPORT,
FONT='ARIAL',SIZE=8,
COLOR='BLACK',
BACKCOLOR='NONE',
STYLE=NORMAL,
RIGHTGAP=0.00,LEFTGAP=0.00,$
TYPE=REPORT,
COLUMN=P1 ,SQUEEZE=1.00,$
TYPE=REPORT,COLUMN=P2 ,
SQUEEZE=1.00,$ 
TYPE=REPORT,COLUMN=P3 ,SQUEEZE=1.00,$ 
TYPE=REPORT,COLUMN=P4 ,SQUEEZE=1.00,$
TYPE=HEADING,STYLE=BOLD,
TYPE=HEADING,
ITEM=1,
STYLE=BOLD,WIDTH=2.00,
JUSTIFY=CENTER,$ 
TYPE=HEADING,ITEM=2,
STYLE=BOLD,
WIDTH=2.00,JUSTIFY=CENTER,$
*TYPE=HEADING,ITEM=1,
STYLE=BOLD,
WIDTH=2.00,
JUSTIFY=LEFT,$
*TYPE=HEADING,
ITEM=2,
STYLE=BOLD,
WIDTH=2.00,JUSTIFY=LEFT,$<br />
TYPE=HEADING,ITEM=1,STYLE=BOLD,
POSITION=P1,
JUSTIFY=LEFT,$
*TYPE=HEADING,ITEM=2,STYLE=BOLD,P
OSITION=P3,JUSTIFY=LEFT,$<br />
ENDSTYLE<br />END

This message has been edited. Last edited by: <Mabel>,