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

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