<?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 Large tables on another sheet in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Large-tables-on-another-sheet/m-p/889467#M351431</link>
    <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;we are generating a report with ods pdf.&lt;BR /&gt;Tables generated with proc report and proc tabulate appear in this report.&lt;BR /&gt;Some tables appear to exceed the size of the sheet and move to the next sheet.&lt;BR /&gt;The table cannot be made smaller because the headers would not be read, since they are long.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;that's how they appear now:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cristina_inet_0-1692170490918.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/86739iED4DDB7078C941D6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cristina_inet_0-1692170490918.png" alt="Cristina_inet_0-1692170490918.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;that's how they should appear:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cristina_inet_1-1692170528943.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/86740i22342ACAD40C658F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cristina_inet_1-1692170528943.png" alt="Cristina_inet_1-1692170528943.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Would they know how to do it?&lt;BR /&gt;Thank you very much and greetings.&lt;/P&gt;</description>
    <pubDate>Wed, 16 Aug 2023 07:22:59 GMT</pubDate>
    <dc:creator>Cristina_inet</dc:creator>
    <dc:date>2023-08-16T07:22:59Z</dc:date>
    <item>
      <title>Large tables on another sheet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Large-tables-on-another-sheet/m-p/889467#M351431</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;we are generating a report with ods pdf.&lt;BR /&gt;Tables generated with proc report and proc tabulate appear in this report.&lt;BR /&gt;Some tables appear to exceed the size of the sheet and move to the next sheet.&lt;BR /&gt;The table cannot be made smaller because the headers would not be read, since they are long.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;that's how they appear now:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cristina_inet_0-1692170490918.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/86739iED4DDB7078C941D6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cristina_inet_0-1692170490918.png" alt="Cristina_inet_0-1692170490918.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;that's how they should appear:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cristina_inet_1-1692170528943.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/86740i22342ACAD40C658F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cristina_inet_1-1692170528943.png" alt="Cristina_inet_1-1692170528943.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Would they know how to do it?&lt;BR /&gt;Thank you very much and greetings.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2023 07:22:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Large-tables-on-another-sheet/m-p/889467#M351431</guid>
      <dc:creator>Cristina_inet</dc:creator>
      <dc:date>2023-08-16T07:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: Large tables on another sheet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Large-tables-on-another-sheet/m-p/889470#M351434</link>
      <description>&lt;P&gt;Are you expecting to actually print this on paper?&lt;/P&gt;
&lt;P&gt;If not you might investigate setting the system option PAPERSIZE to something larger to accommodate your headers in a readable fashion.&lt;/P&gt;
&lt;P&gt;This, if placed before the ODS PDF (or RTF ) would use a 20 inch wide by 15 inch high logical page size for the output.&lt;/P&gt;
&lt;PRE&gt;options papersize=(20in, 15in);&lt;/PRE&gt;
&lt;P&gt;This doesn't really affect any ODS destination that doesn't use pages, such as HTML.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Reset back to your default after finished with that size by using Papersize= your default, likely one of LETTER or A4.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or use some sort of post-processing tool such as sending the report to RTF and using a word processor program with a macro to rotate the text, then create the pdf from there.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2023 08:34:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Large-tables-on-another-sheet/m-p/889470#M351434</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-08-16T08:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: Large tables on another sheet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Large-tables-on-another-sheet/m-p/889490#M351444</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*
Here are two ways.
1) To make font size be smaller.
2) To make paper size be bigger.
*/



/*1) To make font size be smaller.*/
ods pdf file='c:\temp\temp.pdf' ;
option orientation=landscape nodate nonumber 
       leftmargin=0in rightmargin=0in topmargin=0in bottommargin=0in;
title;
proc report data=sashelp.heart(obs=100) nowd 
style={outputwidth=100%} 
style(header column)={fontsize=8px };
define _all_/display;
run;
ods pdf close;



/*2) To make paper size be bigger.*/
ods pdf file='c:\temp\temp.pdf' ;
option orientation=landscape nodate nonumber 
       leftmargin=0in rightmargin=0in topmargin=0in bottommargin=0in
       papersize=(100in 50in);
title;
proc report data=sashelp.heart(obs=100) nowd 
style={outputwidth=100%} ;
define _all_/display;
run;
ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 16 Aug 2023 12:02:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Large-tables-on-another-sheet/m-p/889490#M351444</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-08-16T12:02:04Z</dc:date>
    </item>
  </channel>
</rss>

