BookmarkSubscribeRSS Feed
SASER
Fluorite | Level 6

Hello there,

Can anybody suggest me a skeleton structure for how to create 4-6 charts in one single html page using GPLOT and ODS HTML.

I have found a number of ways to do that in PDF, but none fore HTML. I would really appreciate if somebody can share their knowledge in this issue.

 

Thanks,

Niran

4 REPLIES 4
ballardw
Super User

To get things into a single "document" has the same general approach: The output generating steps are enclosed in an ODS sandwich:

 

ODS HTML Path="d:\output" body="specific name.html"; /*path is any valid output path. I suggest it be a fully qualified path */

 

Proc Gchart;

...

Proc Tabulate;

...

<other output>

 

Ods html close;

 

The fun part is that you will have to re-open HTML for general output after closing.

 

SASER
Fluorite | Level 6

Thank you Ballard, I will have to work more on the proc tabulate area.

SASER
Fluorite | Level 6

Thank you Rick for sharing the link. It was a helpful one.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 4 replies
  • 1246 views
  • 0 likes
  • 3 in conversation