Focal Point
[SOLVED] Indenting rows

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

September 21, 2009, 12:38 PM
MO Admin
[SOLVED] Indenting rows
I am trying to indent my data rows so that they show up about 5 spaces inward from where the title starts. This is a "Name" alpha column. I have tried adding spaces and tabs to the beginning of the data, but it keeps removing them when the report runs.

Any suggestions?

This message has been edited. Last edited by: MO Admin,


Kevin
______________________
Production: WebFocus 7.6.11 on Win2K3 Server
Test: WebFocus 7.6.11 on Win2K3 Server
Formats: Excel2K, PDF, HTML
September 21, 2009, 01:21 PM
Prarie
What format is your output?
September 21, 2009, 01:27 PM
<JG>
If the output is HTML or EXL2k

SET SHOWBLANKS = ON
September 21, 2009, 03:21 PM
Francis Mariani
For PDF, you can use LEFTGAP:

TABLE FILE CAR
SUM
SALES
BY COUNTRY
HEADING
"HEADING 1"
" "
ON TABLE SET PAGE NOPAGE
ON TABLE SET STYLE *
TYPE=REPORT, SQUEEZE=ON,
FONT='ARIAL', SIZE=8, $
TYPE=REPORT, COLUMN=COUNTRY, LEFTGAP=0.25, $
ENDSTYLE
ON TABLE PCHOLD FORMAT PDF
END



Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
September 21, 2009, 03:54 PM
MO Admin
We are using HTML for this report. It worked.

Thanks,


Kevin
______________________
Production: WebFocus 7.6.11 on Win2K3 Server
Test: WebFocus 7.6.11 on Win2K3 Server
Formats: Excel2K, PDF, HTML