Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Side By Side Report

Status
Not open for further replies.

Jack3d

Technical User
Sep 4, 2013
4
0
0
US
How can I get this example to be side by side on one page in a fex?

So the left side of page would have ENGLAND cars and right sode would have FRANCE cars.

For the report I am creating there also needs to be a header and footer for report name, run time, etc.

-* File side_by_side.fex
-*ENGLAND
TABLE FILE CAR
PRINT
CAR.COMP.CAR
CAR.CARREC.MODEL
CAR.WARANT.WARRANTY
HEADING
"Title: Vehicles"
"<CAR.ORIGIN.COUNTRY "
FOOTING BOTTOM
" Page:<TABPAGENO>of<TABLASTPAGE "
WHERE CAR.ORIGIN.COUNTRY EQ 'ENGLAND';
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
TYPE=HEADING,
LINE=1,
JUSTIFY=LEFT,
$
TYPE=HEADING,
LINE=1,
OBJECT=TEXT,
ITEM=1,
BACKCOLOR=RGB(205 205 205),
$
TYPE=HEADING,
LINE=2,
JUSTIFY=LEFT,
$
ENDSTYLE
END

-*FRANCE
TABLE FILE CAR
PRINT
CAR.COMP.CAR
CAR.CARREC.MODEL
CAR.WARANT.WARRANTY
HEADING
"Title: Vehicles"
"<CAR.ORIGIN.COUNTRY "
FOOTING BOTTOM
" Page:<TABPAGENO>of<TABLASTPAGE "
WHERE CAR.ORIGIN.COUNTRY EQ 'FRANCE';
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
TYPE=HEADING,
LINE=1,
JUSTIFY=LEFT,
$
TYPE=HEADING,
LINE=1,
OBJECT=TEXT,
ITEM=1,
BACKCOLOR=RGB(205 205 205),
$
TYPE=HEADING,
LINE=2,
JUSTIFY=LEFT,
$
ENDSTYLE
END
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top