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.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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