I want to add two headers in the report. I'm able to add a header1 before the detailed report produced. Meanwhile i want to second header in between the detailed report.
I got some SECTIONS=(1,27,SKIP=P) or SECTIONS=(1,27,SKIP=nL) option to generate the header in between the report.
Expected Report:
==============
PROGRESS REPORT
ALL/1 REPORT
--------------------------------------------------------------------------------
NAME ENGLISH MATHS
--------------------------------------------------------------------------------
TOM 97 90
JANCY 98 80
NANCY 89 90
BOB 90 80
--------------------------------------------------------------------------------
TOTAL 374 340
--------------------------------------------------------------------------------
ALL/1 REPORT
-------------------------------------------------------------------------------
NAME ENGLISH MATHS
-------------------------------------------------------------------------------
TOM 90 60
JANCY 91 90
NANCY 89 80
BOB 80 70
-------------------------------------------------------------------------------
TOTAL 350 300
-------------------------------------------------------------------------------
ALL/1 REPORT
--------------------------------------------------------------------------------
NAME ENGLISH MATHS
--------------------------------------------------------------------------------
TOM 97 90
JANCY 98 80
NANCY 89 90
BOB 90 80
--------------------------------------------------------------------------------
TOTAL 374 340
--------------------------------------------------------------------------------
ALL/1 REPORT
-------------------------------------------------------------------------------
NAME ENGLISH MATHS
-------------------------------------------------------------------------------
TOM 90 60
JANCY 91 90
NANCY 89 80
BOB 80 70
-------------------------------------------------------------------------------
TOTAL 350 300
-------------------------------------------------------------------------------
I'm able to generate the report like this,
PROGRESS REPORT
ALL/1 REPORT
TOM 97 90
JANCY 98 80
NANCY 89 90
BOB 90 80
TOTAL 374 340
TOM 90 60
JANCY 91 90
NANCY 89 80
BOB 80 70
TOTAL 350 300
Kindly help me to append second header in the report.
Thanks,
vs.