<?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 Re: multiple outputs to 1 page ODS PDF in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/multiple-outputs-to-1-page-ODS-PDF/m-p/261822#M57637</link>
    <description>&lt;P&gt;Fantastic!! Thank you.&lt;/P&gt;</description>
    <pubDate>Wed, 06 Apr 2016 16:29:41 GMT</pubDate>
    <dc:creator>BLarson</dc:creator>
    <dc:date>2016-04-06T16:29:41Z</dc:date>
    <item>
      <title>multiple outputs to 1 page ODS PDF</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/multiple-outputs-to-1-page-ODS-PDF/m-p/261719#M57631</link>
      <description>&lt;P&gt;Hello, I was reading the information at the below link for positioning multiple graphs on one PDF page.&amp;nbsp; I have 2 questions.&amp;nbsp; Is the approach outlined in the link below (using horgin= and vorgin=) will that work as well for Proc Tabulate or Proc Means outputs?&amp;nbsp; Then secondly is there any advantage gained in control of th eset up using ODS PowerPoint vs ODS PDF.&amp;nbsp; Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/graphref/67881/HTML/default/viewer.htm#p0wtchgwnh41ctn1xcu6pfx4geqm.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/graphref/67881/HTML/default/viewer.htm#p0wtchgwnh41ctn1xcu6pfx4geqm.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Apr 2016 14:07:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/multiple-outputs-to-1-page-ODS-PDF/m-p/261719#M57631</guid>
      <dc:creator>BLarson</dc:creator>
      <dc:date>2016-04-06T14:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: multiple outputs to 1 page ODS PDF</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/multiple-outputs-to-1-page-ODS-PDF/m-p/261815#M57636</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With SAS 9.4 I would go for &lt;A href="http://support.sas.com/documentation/cdl/en/odsug/67921/HTML/default/viewer.htm#p1k4g02kp6c9nwn164il8odc9pir.htm" target="_blank"&gt;ODS LAYOUT&lt;/A&gt;, this will give&amp;nbsp; you a lot of flexibility on where on the page you want to position your output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See a sample program below&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options
  orientation=portrait
  papersize="ISO A4"
  topmargin=2cm
  bottommargin=2cm
  leftmargin=2.5cm
  rightmargin=1.5cm
  nodate
  nonumber
  nocenter
;
title;
footnote;

ods pdf file="c:\temp\sample.pdf" nogtitle nogfootnote;
ods graphics / outputfmt=pdf;
title "Overall titel";
footnote "Overall footnote";

ods layout absolute;

ods region x=0cm y=0cm height=6cm style={background=cx4dbfbc};
title "proc print 1";
proc print
  data=sashelp.class(obs=5)
  style(report) = { width=100pct }
;
  where sex = "F";
run;
title;

ods region x=5cm y=6.5cm height=10cm width=10cm style={background=cxd2691e};
title "proc sgplot";
ods graphics / height=8cm width=10cm;
proc sgplot data=sashelp.cars;
  vbar type / group=Origin;
run;
ods region x=0cm y=17cm height=7cm style={background=cxffd700};
title "proc print 2";
proc print
  data=sashelp.class(obs=5)
  style(report) = { width=100pct }
;
  where sex = "M";
run;
title;
ods layout end;
ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Wed, 06 Apr 2016 16:23:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/multiple-outputs-to-1-page-ODS-PDF/m-p/261815#M57636</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-04-06T16:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: multiple outputs to 1 page ODS PDF</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/multiple-outputs-to-1-page-ODS-PDF/m-p/261822#M57637</link>
      <description>&lt;P&gt;Fantastic!! Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Apr 2016 16:29:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/multiple-outputs-to-1-page-ODS-PDF/m-p/261822#M57637</guid>
      <dc:creator>BLarson</dc:creator>
      <dc:date>2016-04-06T16:29:41Z</dc:date>
    </item>
  </channel>
</rss>

