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

I'm trying to publish 2 small outputs from PROC TABULATE into a 1 page PDF.

However I still have 2 separate pages, despite my using CONDENSE.

What could be the reason?

 

ODS PDF  style=journal file="\\S01fs200\group01\GP14105\&YYYY\G en E\pdf\TEST.PDF";
options nobyline nodate;

title "OVERVIEW";
proc tabulate data=totaal format = commax12.2 MISSING ;
   class pos type ;
   classlev pos type;
   var  production score base perc comm;
   table pos='' * type ='',
		 production ='LEVEL'  * sum ='' 
		 score ='SCORE'  * sum ='' 
		 base ='BASE'  * sum ='' 
		 perc='PERC' * sum =''  
		 comm ='COMMISSION' * sum=''/condense misstext=' ';
run;

title "INVEST: REACHED LEVELS BY AGENT";
proc tabulate data=overzicht (where = (pos = 12635)) format = commax12.2 MISSING;
   class pos ;
   var  ADVIESbedrag EWATbedrag EWATmax VERKOOPbedrag NNMdrempel INVscore TOTscore INVperc;
   table ADVIESbedrag ='ADVICE '  * sum ='' 
   		 EWATbedrag ='EWAT '  * sum ='' 
		 EWATmax  ='EWAT 10% '  * sum ='' 
		 VERKOOPbedrag ='SALES '  * sum ='' 
		 NNMdrempel ='LEVEL'  * sum =''  
		 INVscore='INVEST SCORE ' * sum ='' 
		 TOTscore='TOTAL SCORE ' * sum ='' 
 		 INVperc='PERC ' * sum ='' /condense;
run;

ODS PDF  close;
1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

By default ODS PDF generates a page for each procedure. Use the option STARTPAGE=NO on the ODS PDF statement to send all output to the same page.

 

You can interleave ODS PDF statements with this option to change behavior between procedures.

View solution in original post

2 REPLIES 2
ballardw
Super User

By default ODS PDF generates a page for each procedure. Use the option STARTPAGE=NO on the ODS PDF statement to send all output to the same page.

 

You can interleave ODS PDF statements with this option to change behavior between procedures.

WimW
Calcite | Level 5
Works perfect, Thank You ballardw!

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 2 replies
  • 1034 views
  • 0 likes
  • 2 in conversation