BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
TheAntithesis13
Calcite | Level 5

I'm trying to add bookmarks to an ods pdf output, but I'm struggling to get them to apply to some but not all of the tables.

 

Here's what I've tried:

ods pdf file="blah blah blah" startpage=no;
title "table set 1"; ods proclabel "table set 1"; ods text="table 1 from set 1"; proc print data=table11 noobs; run; ods text="table 2 from set 1"; proc print data=table12 noobs; run; ods text="table 3 from set 1"; proc print data=table13 noobs; run;
ods pdf startpage=now; title "table set 2"; ods proclabel "table set 2"; ods text="table 1 from set 2"; proc print data=table21 noobs; run; ods text="table 2 from set 2"; proc print data=table22 noobs; run;
ods pdf close;

When running this, the table of contents for the pdf is:

table set 1

The Print Procedure

The Print Procedure

table set 2

The Print Procedure

I would like the contents to be:

table set 1

table set 2

How do I either remove the "The Print Procedure" labels, or get a single label to cover multiple tables?

 

Also, when someone clicks on an item in the contents, they are taken to the table, not the text immediately above it. If I could get the links to go to the text, that would be outstanding.

 

I am currently using SAS Enterprise Guide 8.3.

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

You could resort to PROC DOCUMENT .

 


data a;
set sashelp.class(obs=6); 
xc=1;
run;

options nodate nonumber;
title;
ods document name=testAW(write);
Proc report data=a  nowd ;
Columns xc name age weight height;
define xc /order noprint;
Define name /display;
Define age/display;
Define weight/display;
Define height/ display;
Where weight <95;
break before xc / contents="" page;
Run;
Proc report data=a  nowd;
Columns xc name age weight height;
define xc /order noprint;
Define name /display;
Define age/display;
Define weight/display;
Define height/ display;
Where weight >=95;
break before xc / contents="" page;
Run;

Proc report data=a  nowd ;
Columns xc name age weight height;
define xc /order noprint;
Define name /display;
break before xc / contents="" page;
Run;
ods document close;

proc document name=testAW;
list/ levels=all; run;
quit;


proc document name=testAW2(write);
make \CLASS#1;
setlabel \Class#1  "table set 1";
copy \work.testAW\Report#1\Report#1\Report#1 to \Class#1;
copy \work.testAW\Report#2\Report#1\Report#1 to \Class#1;
run;


make \CLASS2#1;
setlabel \Class2#1  "table set 2";
copy \work.testAW\Report#3\Report#1\Report#1 to \Class2#1;
copy \work.testAW\Report#2\Report#1\Report#1 to \Class2#1;
run;


list/ levels=all; run;
quit;

title;
proc document name=work.testAW2;
ods pdf file="c:\temp\twolevels.pdf"  startpage=no ;
obtitle \CLASS#1\Report#1 'table set 1';
replay \CLASS#1;
run;

ods pdf startpage=now;
obtitle \CLASS2#1\Report#1 'table set 2';
replay \CLASS2#1;
run;
ods pdf close;
quit;

Ksharp_0-1709790683443.png

 

View solution in original post

2 REPLIES 2
Ksharp
Super User

You could resort to PROC DOCUMENT .

 


data a;
set sashelp.class(obs=6); 
xc=1;
run;

options nodate nonumber;
title;
ods document name=testAW(write);
Proc report data=a  nowd ;
Columns xc name age weight height;
define xc /order noprint;
Define name /display;
Define age/display;
Define weight/display;
Define height/ display;
Where weight <95;
break before xc / contents="" page;
Run;
Proc report data=a  nowd;
Columns xc name age weight height;
define xc /order noprint;
Define name /display;
Define age/display;
Define weight/display;
Define height/ display;
Where weight >=95;
break before xc / contents="" page;
Run;

Proc report data=a  nowd ;
Columns xc name age weight height;
define xc /order noprint;
Define name /display;
break before xc / contents="" page;
Run;
ods document close;

proc document name=testAW;
list/ levels=all; run;
quit;


proc document name=testAW2(write);
make \CLASS#1;
setlabel \Class#1  "table set 1";
copy \work.testAW\Report#1\Report#1\Report#1 to \Class#1;
copy \work.testAW\Report#2\Report#1\Report#1 to \Class#1;
run;


make \CLASS2#1;
setlabel \Class2#1  "table set 2";
copy \work.testAW\Report#3\Report#1\Report#1 to \Class2#1;
copy \work.testAW\Report#2\Report#1\Report#1 to \Class2#1;
run;


list/ levels=all; run;
quit;

title;
proc document name=work.testAW2;
ods pdf file="c:\temp\twolevels.pdf"  startpage=no ;
obtitle \CLASS#1\Report#1 'table set 1';
replay \CLASS#1;
run;

ods pdf startpage=now;
obtitle \CLASS2#1\Report#1 'table set 2';
replay \CLASS2#1;
run;
ods pdf close;
quit;

Ksharp_0-1709790683443.png

 

TheAntithesis13
Calcite | Level 5

This looks like exactly what I'm looking for! I'll try to figure out how PROC DOCUMENT works then get my contents page nice and fancy!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 2 replies
  • 289 views
  • 1 like
  • 2 in conversation