BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Can Anyone suggest how to get a scrolling HTML output on Enterprise guide?
I am using 4.0 version on SAS Enterprise guide.
1 REPLY 1
Cynthia_sas
Diamond | Level 26
Hi,
There is an HTML tagset called HTMLSCROLL that you might want to investigate. It is described here:
http://support.sas.com/rnd/base/topics/odsmarkup/htmlscroll.html

First, you would have to download the tagset code and then you would have run the tagset code and have the HTMLSCROLL tagset put in the right template store for your version of EG. (You also need to be running SAS 9.1 for this to work.)

Since you are using EG, you might need somebody's help to find out the proper template store in which to put the tagset. Also, depending on how comfortable you are with submitting SAS code, you will either have to submit code for your output or you will have to modify the EG options to have the appropriate ODS statements automatically submitted before and after your steps.

It is fairly simple to invoke the HTMLSCROLL tagset after you do the above steps. The site above has several examples, but a simple one is (remember you have to download the tagset and create the tagset in a template store before this will work):

[pre]
ods tagsets.htmlscroll file='scroll.html';
proc print data=sashelp.class;
run;
ods tagsets.htmlscroll close;
[/pre]

Good luck!
cynthia

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1022 views
  • 0 likes
  • 2 in conversation