BookmarkSubscribeRSS Feed
NN
Quartz | Level 8 NN
Quartz | Level 8
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;
5 REPLIES 5
Chevell_sas
SAS Employee
Hello,

Open a ticket with Technical Support and we can provide you with and updated version of this tagset which can be used to generate the desired behavior here.

Chevell
NN
Quartz | Level 8 NN
Quartz | Level 8
Thanks Chevell,
Will try and get my admin to open a track with SAS.
Just another small question.
In this tagset i was trying to use the Frozen_rowheaders , i have two tables in the same html,
i wish to apply the frozen rowheader to the second table only.
Will this be possible.
Ninan
Obsidian | Level 7

I have same question as above to display reports top and bottom instead of side by side in stored process output

I have 3 reports and I want rpt1&2 in tab1 and RPT3 in tab2, I am able to display it using

ods tagsets.tableeditor file=_WEBOUT  style=sasweb

options(PANELCOLS="2" web_tabs="TAB1111,hide,TAB222");

but report one and two are on side by side

in http://support.sas.com/rnd/base/ods/odsmarkup/tableeditor/tableeditor.tpl

I found an option PANELROWS, so I replaced PANELCOLS with PANELROWS, but it didn’t help.

note: my SAS version 9.4

Any help will be appreciated

Ninan
Obsidian | Level 7

options(pagebreak="2" PANELROWS="2" web_tabs="TAB1111,hide,TAB222");

this resolved my problem

Chevell_sas
SAS Employee
To use the Frozen_rowheaders= option, you can only have a single table in the HTML file. So this is not possible currently to add the frozen row headers to the second table only.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 5 replies
  • 1482 views
  • 0 likes
  • 3 in conversation