Guys,
Is it possible to have two or more reports one below the other when defining them in tabs using the tableeditor tagset.
The following link http://support.sas.com/kb/40/264.html gave some info but here the reports are panelled and not one below the other.
If some one could guide as to how i could achieve this.
The code i am trying is below
ods tagsets.tableeditor file="temp.html"
options(pagebreak = "2" web_tabs="part1,hide,part2,hide")
style=statistical;
proc means data=sashelp.class;
run;
proc gchart data=sashelp.class;
vbar age;
run;
quit;
proc freq data=sashelp.class;
run;
proc report data=sashelp.orsales nowd;
run;
ods tagsets.tableeditor close;
... View more