<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic multiple outputs to 1 page ODS PDF in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/multiple-outputs-to-1-page-ODS-PDF/m-p/448656#M20707</link>
    <description>&lt;P&gt;I'm trying to publish 2 small outputs from PROC TABULATE into a 1 page PDF.&lt;/P&gt;&lt;P&gt;However I still have 2 separate pages, despite my using CONDENSE.&lt;/P&gt;&lt;P&gt;What could be the reason?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS PDF  style=journal file="\\S01fs200\group01\GP14105\&amp;amp;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;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 26 Mar 2018 14:54:42 GMT</pubDate>
    <dc:creator>WimW</dc:creator>
    <dc:date>2018-03-26T14:54:42Z</dc:date>
    <item>
      <title>multiple outputs to 1 page ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/multiple-outputs-to-1-page-ODS-PDF/m-p/448656#M20707</link>
      <description>&lt;P&gt;I'm trying to publish 2 small outputs from PROC TABULATE into a 1 page PDF.&lt;/P&gt;&lt;P&gt;However I still have 2 separate pages, despite my using CONDENSE.&lt;/P&gt;&lt;P&gt;What could be the reason?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS PDF  style=journal file="\\S01fs200\group01\GP14105\&amp;amp;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;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 26 Mar 2018 14:54:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/multiple-outputs-to-1-page-ODS-PDF/m-p/448656#M20707</guid>
      <dc:creator>WimW</dc:creator>
      <dc:date>2018-03-26T14:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: multiple outputs to 1 page ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/multiple-outputs-to-1-page-ODS-PDF/m-p/448658#M20708</link>
      <description>&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can interleave ODS PDF statements with this option to change behavior between procedures.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 15:03:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/multiple-outputs-to-1-page-ODS-PDF/m-p/448658#M20708</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-03-26T15:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: multiple outputs to 1 page ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/multiple-outputs-to-1-page-ODS-PDF/m-p/448670#M20709</link>
      <description>Works perfect, Thank You ballardw!</description>
      <pubDate>Mon, 26 Mar 2018 15:19:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/multiple-outputs-to-1-page-ODS-PDF/m-p/448670#M20709</guid>
      <dc:creator>WimW</dc:creator>
      <dc:date>2018-03-26T15:19:32Z</dc:date>
    </item>
  </channel>
</rss>

