Focal Point
[SOLVED] Need extra space between reports

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

August 27, 2009, 12:55 PM
MO Admin
[SOLVED] Need extra space between reports
I am running 4 reports together in HTML output. I am wanting to put some extra white space between the first two and the second two. Any suggestions?

Thanks,

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
August 27, 2009, 01:21 PM
Francis Mariani
Quickest way I can think of:

TABLE FILE CAR
SUM SALES
BY COUNTRY
ON TABLE HOLD AS H001 FORMAT HTML
END

TABLE FILE CAR
SUM SALES
BY SEATS
ON TABLE HOLD AS H002 FORMAT HTML
END
-RUN
-HTMLFORM BEGIN
!IBI.FIL.H001;
<div style="height: 40px;"></div>
!IBI.FIL.H002;
-HTMLFORM 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
August 27, 2009, 01:42 PM
Darin Lee
Or just put some blank lines in the footing of the first report:
TABLE FILE CAR
SUM SALES
BY COUNTRY
FOOTING
"</4>"
ON TABLE HOLD AS H001 FORMAT HTML
END

TABLE FILE CAR
SUM SALES
BY SEATS
ON TABLE HOLD AS H002 FORMAT HTML
END
-RUN
-HTMLFORM BEGIN
!IBI.FIL.H001;
!IBI.FIL.H002;
-HTMLFORM END



Regards,

Darin



In FOCUS since 1991
WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex
Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex
WF Client: 77 on Linux w/Tomcat
August 27, 2009, 02:38 PM
MO Admin
I went with Darin's solution because it seemed the easiest and more understandable for anyone else who looks at the code. It worked perfectly. Thanks for the help.


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