<?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: move table left of pdf page in proc report in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/move-table-left-of-pdf-page-in-proc-report/m-p/467154#M119237</link>
    <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; My suggestion is that you look at the documentation and for some papers by Dan O'Connor, Pete Lund and Barbara Okerson on the use of ODS LAYOUT. I hardly ever use ABSOLUTE Layout. However, the page margins always come into play and I always use WIDTH=. PROC REPORT will try to center unless you use the NOCENTER option. You didn't post any data, but using SASHELP.SHOES, I was able to get this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="layout_pdf_example.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/20978i3D34DB244E62C607/image-size/large?v=v2&amp;amp;px=999" role="button" title="layout_pdf_example.png" alt="layout_pdf_example.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Hope it gives you an idea of what to look up in the doc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
    <pubDate>Sat, 02 Jun 2018 19:40:03 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2018-06-02T19:40:03Z</dc:date>
    <item>
      <title>move table left of pdf page in proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/move-table-left-of-pdf-page-in-proc-report/m-p/467145#M119235</link>
      <description>&lt;P&gt;Hi everyone!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I&amp;nbsp;found the codes named Working with ODS Layout in SAS website. &amp;nbsp;it looks like it works in that example SAS provided, but it does not appear to move the table farther left than from the center when I set x=.25in in the ODS region line. &amp;nbsp;however, when I set x=5, it does move the table to near the right edge of the pdf page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help you could provide is greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods pdf file = '/folders/myfolders/sasuser.v94/odslayoutpage.pdf';&lt;BR /&gt;ods layout absolute;&lt;BR /&gt;ods region y=1in x=.25in;&lt;BR /&gt;proc report nowd data=sales4&lt;BR /&gt;style(header)={background=cx494068 color=cxbbb2e0};&lt;BR /&gt;columns region city sales;&lt;BR /&gt;define region / group;&lt;BR /&gt;define sales /analysis sum format=dollar14.;&lt;BR /&gt;run;&lt;BR /&gt;ods layout end;&lt;BR /&gt;ods pdf close;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jun 2018 18:52:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/move-table-left-of-pdf-page-in-proc-report/m-p/467145#M119235</guid>
      <dc:creator>Ethen</dc:creator>
      <dc:date>2018-06-02T18:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: move table left of pdf page in proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/move-table-left-of-pdf-page-in-proc-report/m-p/467154#M119237</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; My suggestion is that you look at the documentation and for some papers by Dan O'Connor, Pete Lund and Barbara Okerson on the use of ODS LAYOUT. I hardly ever use ABSOLUTE Layout. However, the page margins always come into play and I always use WIDTH=. PROC REPORT will try to center unless you use the NOCENTER option. You didn't post any data, but using SASHELP.SHOES, I was able to get this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="layout_pdf_example.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/20978i3D34DB244E62C607/image-size/large?v=v2&amp;amp;px=999" role="button" title="layout_pdf_example.png" alt="layout_pdf_example.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Hope it gives you an idea of what to look up in the doc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jun 2018 19:40:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/move-table-left-of-pdf-page-in-proc-report/m-p/467154#M119237</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-06-02T19:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: move table left of pdf page in proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/move-table-left-of-pdf-page-in-proc-report/m-p/467169#M119245</link>
      <description>&lt;P&gt;Cynthia!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you! &amp;nbsp;I appreciate your help very much!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your codes work nicely. &amp;nbsp;I'll definite take a look at the paper you recommended.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ethen,&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jun 2018 22:36:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/move-table-left-of-pdf-page-in-proc-report/m-p/467169#M119245</guid>
      <dc:creator>Ethen</dc:creator>
      <dc:date>2018-06-02T22:36:42Z</dc:date>
    </item>
  </channel>
</rss>

