Hi ,
I am using PROC SGPLOT for generating the graphs and after generatign the graph these are converted into WORD and PDF files using a macro. The concern is i am getting SG Plot Procedure as third title in bookmarks in PDF , but not in RTF as shown in the attached file. I have tried with ODS NOPTITLE /ODS NOPROCTITLE and even ODS PROCLABEL, but still unable to mask The SGPLOT Procedure Title in PDF. Are ther any other options/methods for masking this "The SGPLOT Procedure" in Bookmark. In the attached graph the graph is generated in 3 pages and each in each page, for bookmark it is displayng the title.
Thanks in advance for support/responses.
I am not sure I know precisely what you are asking, but bookmarkgen=no suppresses all bookmarks. See:
specifies whether to generate and display the list of bookmarks for PDF and PS files.
controls the generation of bookmarks in PDF and PS files.
ods noproctitle;
ods pdf body='b.pdf' bookmarkgen=no;
title 'My Title';
proc sgplot data=sashelp.class;
reg y=weight x=height;
run;
proc sgplot data=sashelp.class;
reg y=weight x=height;
run;
proc sgplot data=sashelp.class;
reg y=weight x=height;
run;
ods pdf close;
If none of this is helpful, please state more specifically what you want.
You can also use the DESCRIPTION option in the SG procedures to change the TOC label:
proc sgplot data=sashelp.class description="My Title";
vbar age;
run;
Hope this helps!
Dan
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.