BookmarkSubscribeRSS Feed
Cello23
Quartz | Level 8

Hi,

is it possibile insert 4 procedures under a single tab of tagsets.tableeditor ?

sas.PNG

I have max 2 procedure:

sas_2.PNG

Thank's!!!!

ods path(prepend) templib.templat(update);

%include "X:\SOFTWARE e varie informatica\Corso sas\tagset_tableeditor\tableEditor.tpl";


ods tagsets.tableeditor  file="C:\Users\ui43925\Desktop\A-RESULT\temp_1.html"
    style=statistical
    options( panelcols="2"
web_tabs="GRAFICI,HIDE,HIDE, HIDE, DATI,HIDE"   );
proc print data=sashelp.class;
title "Table 1";
run;
proc print data=sashelp.class;
title "Table 2";
run;

ods tagsets.tableeditor
options(panelcols="2");
proc print data=sashelp.class;
title "Table 1A";
run;
proc print data=sashelp.class;
title "Table 2B";
run;


ods tagsets.tableeditor
options(panelcols="2");
proc print data=sashelp.class;
title "Table 3";
run;
proc print data=sashelp.class;
title "Table 4";
run;
ods tagsets.tableeditor
options(panelcols="2");
proc print data=sashelp.class;
title "Table 3A";
run;
proc print data=sashelp.class;
title "Table 4B";
run;

ods tagsets.tableeditor close;

suga badge.PNGThe SAS Users Group for Administrators (SUGA) is open to all SAS administrators and architects who install, update, manage or maintain a SAS deployment. 

Join SUGA 

CLI in SAS Viya

Learn how to install the SAS Viya CLI and a few commands you may find useful in this video by SAS’ Darrell Barton.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 0 replies
  • 955 views
  • 0 likes
  • 1 in conversation