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
SAS Super FREQ
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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 1 reply
  • 605 views
  • 0 likes
  • 2 in conversation