<?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: ods - how to fit tables into a single page in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/423938#M104311</link>
    <description>Its not working</description>
    <pubDate>Thu, 28 Dec 2017 18:00:50 GMT</pubDate>
    <dc:creator>riya275</dc:creator>
    <dc:date>2017-12-28T18:00:50Z</dc:date>
    <item>
      <title>ods - how to fit tables into a single page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/423933#M104308</link>
      <description>&lt;P&gt;I have created a pdf with ods procedure and my report has 7 columns. i want all seven columns on the same page.&amp;nbsp;&lt;/P&gt;&lt;P&gt;for one first page of the table &amp;nbsp;i am getting them on the same page&amp;nbsp; . however When the table continues on the next page there are only 6 columns and the seventh column has shifted to a separate page.&amp;nbsp; How to fix this?&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods pdf file ='/folders/myfolders/sales.pdf' ;
options nodate;
/*Olympic Pipeline (LONDON) - by Probability As of 17th November 2012*/
proc report data = c1.a;
column probability____ Account_name Opportunity_Owner Last_Modified_Date 
Total_Media_Value Digital_Budget Deal_Comments;
define probability____/ order  descending 'Probability';
break after probability____/dol summarize style=[backgroundcolor=grgy ]  ;
define Account_name/  'Client';
define Opportunity_Owner /'Champ';
define Last_Modified_Date/ display 'Modified';
define Digital_Budget / SUM 'Digital Budgett' format= dollar30. ;
define Total_Media_Value / SUM 'Total Budget' format= dollar30.;
define Deal_Comments/ 'Comments';
rbreak after/ ol summarize style=[backgroundcolor= grrp color=aliceblue ];
title 'Olympic Pipeline (LONDON) - by Probability As of 17th November 2012'  ;
run;
ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 28 Dec 2017 17:44:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/423933#M104308</guid>
      <dc:creator>riya275</dc:creator>
      <dc:date>2017-12-28T17:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: ods - how to fit tables into a single page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/423935#M104309</link>
      <description>&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000531077.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000531077.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try increasing the paper size.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Dec 2017 17:47:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/423935#M104309</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-12-28T17:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: ods - how to fit tables into a single page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/423936#M104310</link>
      <description>&lt;P&gt;It's conceivable that you don't really need 30 characters to print the budget values.&amp;nbsp; Try cutting back from:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;format=dollar30.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to this instead:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;format=dollar20.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Dec 2017 17:53:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/423936#M104310</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2017-12-28T17:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: ods - how to fit tables into a single page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/423938#M104311</link>
      <description>Its not working</description>
      <pubDate>Thu, 28 Dec 2017 18:00:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/423938#M104311</guid>
      <dc:creator>riya275</dc:creator>
      <dc:date>2017-12-28T18:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: ods - how to fit tables into a single page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/423939#M104312</link>
      <description>&lt;P&gt;But how come only the first page of the table fits and the other&amp;nbsp; two pages&amp;nbsp; dont?&lt;/P&gt;</description>
      <pubDate>Thu, 28 Dec 2017 18:02:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/423939#M104312</guid>
      <dc:creator>riya275</dc:creator>
      <dc:date>2017-12-28T18:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: ods - how to fit tables into a single page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/423944#M104313</link>
      <description>&lt;P&gt;Sometimes, the report is just too wide to fit.&amp;nbsp; (See &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16777"&gt;@WarrenKuhfeld&lt;/a&gt;'s comment ! )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could also experiment with the Comments field.&amp;nbsp; Take a look at the WRAP option and whether that might save some space by enabling you to use a narrower width.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Dec 2017 18:45:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/423944#M104313</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2017-12-28T18:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: ods - how to fit tables into a single page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/423984#M104335</link>
      <description>&lt;P&gt;You can restrict the width of certain columns with something like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;define Deal_Comments/ 'Comments' style(column)=[width=15%];&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 28 Dec 2017 23:15:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/423984#M104335</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2017-12-28T23:15:09Z</dc:date>
    </item>
    <item>
      <title>Re: ods - how to fit tables into a single page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/424159#M104412</link>
      <description>&lt;P&gt;options papersize=(100in 100in);&lt;/P&gt;</description>
      <pubDate>Sun, 31 Dec 2017 11:22:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-how-to-fit-tables-into-a-single-page/m-p/424159#M104412</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-12-31T11:22:33Z</dc:date>
    </item>
  </channel>
</rss>

