<?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: Data to print in single page but it is splitting In two? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/854482#M337696</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/421820"&gt;@gema&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Those are valid options in SAS. I typed my response in the reply box, so I am confused. I wasn't referring to ODS. Thanks,&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It is very hard to read but original question is sending output to ODS PDF. So for a workable solution to that question the should related to something that will affect output in ODS PDF.&lt;/P&gt;</description>
    <pubDate>Thu, 19 Jan 2023 03:49:25 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2023-01-19T03:49:25Z</dc:date>
    <item>
      <title>Data to print in single page but it is splitting In two?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/847457#M335048</link>
      <description>&lt;P&gt;I want this Data to print in single page but it is splitting In two. Any suggestion please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CODE.jpeg" style="width: 750px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/77962iFCA8F9D18AE9DCCA/image-dimensions/750x422?v=v2" width="750" height="422" role="button" title="CODE.jpeg" alt="CODE.jpeg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Output.jpeg" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/77963i2F88147FC6DCBD12/image-size/large?v=v2&amp;amp;px=999" role="button" title="Output.jpeg" alt="Output.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2022 14:58:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/847457#M335048</guid>
      <dc:creator>animesh123</dc:creator>
      <dc:date>2022-12-02T14:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Data to print in single page but it is splitting In two?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/847458#M335049</link>
      <description>&lt;P&gt;Proc Print output does that when the length of "printed" line exceeds the display area available.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could use STYLE overrides on VAR statements to reduce the width of displayed columns or provide a larger space for the display.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is &lt;STRONG&gt;extremely hard to tell what your code is as pictures are not clear&lt;/STRONG&gt; but it appears you may be using PDF output. You can use the SAS Options statement, probably should be before the ODS PDF statement, to set either the ORIENTATION to landscape or the PAPERSIZE option to some larger display are or use a different ODS style that uses smaller fonts to reduce the space used.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2022 15:15:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/847458#M335049</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-12-02T15:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: Data to print in single page but it is splitting In two?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/847462#M335052</link>
      <description>What code should I write for SAS Options statement ?</description>
      <pubDate>Fri, 02 Dec 2022 15:58:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/847462#M335052</guid>
      <dc:creator>animesh123</dc:creator>
      <dc:date>2022-12-02T15:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Data to print in single page but it is splitting In two?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/847470#M335057</link>
      <description>&lt;P&gt;I would start with&lt;/P&gt;
&lt;PRE&gt;options orientation=landscape;&lt;/PRE&gt;
&lt;P&gt;However, if your table is longer than the resulting rotation of the print area will display you will have to use Papersize and that will depend on the actual data. So look in the online help for the options.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2022 17:00:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/847470#M335057</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-12-02T17:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: Data to print in single page but it is splitting In two?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/847537#M335080</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods pdf file='c:\temp\temp.pdf' style=journal;
proc report data=sashelp.heart(obs=100) nowd style={outputwidth=100%};
define _all_/style(column)={cellwidth=5%};
run;
ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 03 Dec 2022 03:23:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/847537#M335080</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-12-03T03:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: Data to print in single page but it is splitting In two?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/854367#M337644</link>
      <description>options linesize=132 ps=10000 nocenter orientation=landscape;</description>
      <pubDate>Wed, 18 Jan 2023 16:13:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/854367#M337644</guid>
      <dc:creator>gema</dc:creator>
      <dc:date>2023-01-18T16:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Data to print in single page but it is splitting In two?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/854470#M337686</link>
      <description>&lt;P&gt;Hi: Linesize and Pagesize options are ignored by ODS DESTINATIONS. Especially destinations like ODS PDF and ODS RTF and ODS HTML and all the others except for LISTING really do not use Linesize and Pagesize options. Your output looked like RTF or PDF. As mentioned, your code is hard to read since it is a picture of a screen.&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2023 00:28:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/854470#M337686</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2023-01-19T00:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: Data to print in single page but it is splitting In two?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/854471#M337687</link>
      <description>Those are valid options in SAS. I typed my response in the reply box, so I am confused. I wasn't referring to ODS. Thanks,</description>
      <pubDate>Thu, 19 Jan 2023 00:42:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/854471#M337687</guid>
      <dc:creator>gema</dc:creator>
      <dc:date>2023-01-19T00:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Data to print in single page but it is splitting In two?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/854482#M337696</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/421820"&gt;@gema&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Those are valid options in SAS. I typed my response in the reply box, so I am confused. I wasn't referring to ODS. Thanks,&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It is very hard to read but original question is sending output to ODS PDF. So for a workable solution to that question the should related to something that will affect output in ODS PDF.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2023 03:49:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/854482#M337696</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-01-19T03:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: Data to print in single page but it is splitting In two?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/854712#M337812</link>
      <description>Hi, yes, you are correct, LINESIZE and PAGESIZE are valid SAS System Options. However, they are NOT used for all output creation. These options are designed for the LISTING output (or the Output Window). Other options, equally valid, such as DATE and NUMBER are used by ODS PDF, ODS RTF and the LISTING window, but are NOT used by ODS HTML or ODS CSV destinations. The bottom line is that the SAS System options may or may not be used when you create ODS output.&lt;BR /&gt;&lt;BR /&gt;  But, since you want PDF output, those settings will NOT be used for creating PDF output. You should use the topmargin, bottommargin, rightmargin, and leftmargin options along with the orientation=landscape option.&lt;BR /&gt;Cynthia</description>
      <pubDate>Thu, 19 Jan 2023 22:36:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/854712#M337812</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2023-01-19T22:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: Data to print in single page but it is splitting In two?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/854716#M337813</link>
      <description>Yes. I did not mean to imply that these options were intended for anything other than SAS listing output</description>
      <pubDate>Thu, 19 Jan 2023 22:58:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/854716#M337813</guid>
      <dc:creator>gema</dc:creator>
      <dc:date>2023-01-19T22:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Data to print in single page but it is splitting In two?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/854723#M337815</link>
      <description>Hi:&lt;BR /&gt;  I understand. I was confused because your screen shot was of ODS PDF output, so the LINESIZE and PAGESIZE were not involved in the reason your output was split. Which made me confused why there was even a suggestion to alter those 2 options.&lt;BR /&gt;Cynthia</description>
      <pubDate>Fri, 20 Jan 2023 01:56:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-to-print-in-single-page-but-it-is-splitting-In-two/m-p/854723#M337815</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2023-01-20T01:56:25Z</dc:date>
    </item>
  </channel>
</rss>

