<?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: SAS pdf output not starting on the same page in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-pdf-output-not-starting-on-the-same-page/m-p/935093#M367655</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The new update partially works but i would want the output in the format below&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="twix17_0-1720502760680.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/98239iCE9F976F1767B6A7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="twix17_0-1720502760680.png" alt="twix17_0-1720502760680.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;instead of side by side.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again for your help.&lt;/P&gt;</description>
    <pubDate>Tue, 09 Jul 2024 05:26:37 GMT</pubDate>
    <dc:creator>twix17</dc:creator>
    <dc:date>2024-07-09T05:26:37Z</dc:date>
    <item>
      <title>SAS pdf output not starting on the same page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-pdf-output-not-starting-on-the-same-page/m-p/935070#M367647</link>
      <description>&lt;DIV&gt;Hello Dear community,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I am trying to have two outputs on the same page but i am not getting a desired result.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Below is my code&lt;BR /&gt;Thanks for your help.&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
/*PRINT TABLE*/
ods escapechar="~";
options nodate;
options orientation=landscape leftmargin=0in pageno=1 rightmargin=0in topmargin=1in bottommargin=1in;
ods pdf startpage=never;
ods pdf file="output_path\output.pdf" notoc&amp;nbsp; ;
title;
/* Display Header */
proc report data=header nowd style(report)={just=left};
column col1 col2;
define col1 / display ' ' style(column)=[cellwidth=2in font_size=9pt font_face=calibri background=#90D5FF font_weight=bold];&amp;nbsp;
define col2 / display ' ' style(column)=[cellwidth=3in font_size=9pt font_face=calibri];
run;

/* Display Body */
proc report data=data nowd style(report)={just=left};
columns &amp;lt;column list&amp;gt;;
define column_1 / 'column 1' style(header)={font_size=7pt font_weight=bold background=#90D5FF} style(column)=[cellwidth = 0.4in font_size=7pt font_face=calibri];
define column_2 / 'column 2' style(header)={font_size=7pt font_weight=bold background=#90D5FF} style(column)=[cellwidth = .6in font_size=7pt font_face=calibri];
define column_3 / 'column 3' style(header)={font_size=7pt font_weight=bold background=#90D5FF} style(column)=[cellwidth = 1in font_size=7pt font_face=calibri];
define column_4 / 'column 4' style(header)={font_size=7pt font_weight=bold background=#90D5FF} style(column)=[cellwidth = 0.8in font_size=7pt font_face=calibri];
define column_5 / 'column 5' style(header)={font_size=7pt font_weight=bold background=#90D5FF} style(column)=[cellwidth = 0.7in font_size=7pt font_face=calibri];
run;

ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 08 Jul 2024 23:03:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-pdf-output-not-starting-on-the-same-page/m-p/935070#M367647</guid>
      <dc:creator>twix17</dc:creator>
      <dc:date>2024-07-08T23:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: SAS pdf output not starting on the same page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-pdf-output-not-starting-on-the-same-page/m-p/935075#M367649</link>
      <description>Try&lt;BR /&gt;ods pdf startpage=never;&lt;BR /&gt;ods pdf file="output_path\output.pdf" notoc  ;&lt;BR /&gt;-----&amp;gt;&lt;BR /&gt;ods pdf file="output_path\output.pdf" notoc  startpage=no;&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Jul 2024 01:07:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-pdf-output-not-starting-on-the-same-page/m-p/935075#M367649</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-07-09T01:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: SAS pdf output not starting on the same page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-pdf-output-not-starting-on-the-same-page/m-p/935082#M367650</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I tried this but the output remains the same.&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;ods pdf file="output_path\output.pdf" notoc startpage=no;&lt;BR /&gt;&lt;BR /&gt;Regards.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2024 01:54:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-pdf-output-not-starting-on-the-same-page/m-p/935082#M367650</guid>
      <dc:creator>twix17</dc:creator>
      <dc:date>2024-07-09T01:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: SAS pdf output not starting on the same page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-pdf-output-not-starting-on-the-same-page/m-p/935084#M367651</link>
      <description>&lt;P&gt;That is due to you are using "orientation=landscape " option which leave no enough room to include the second table.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To make more room for second table ,try "papersize=(60in 80in)" option OR try "columns=2"option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
/*PRINT TABLE*/
ods escapechar="~";
options nodate;
options orientation=landscape papersize=A4 leftmargin=0in pageno=1 rightmargin=0in topmargin=1in bottommargin=1in;
ods pdf file="c:\temp\output.pdf" notoc  startpage=no columns=2;
title;
/* Display Header */
proc report data=sashelp.class nowd style(report)={just=left};
run;

/* Display Body */
proc report data=sashelp.class nowd style(report)={just=left};
run;

ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1720491082649.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/98238i2B9A9571882B70BE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1720491082649.png" alt="Ksharp_0-1720491082649.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2024 02:11:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-pdf-output-not-starting-on-the-same-page/m-p/935084#M367651</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-07-09T02:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: SAS pdf output not starting on the same page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-pdf-output-not-starting-on-the-same-page/m-p/935093#M367655</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The new update partially works but i would want the output in the format below&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="twix17_0-1720502760680.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/98239iCE9F976F1767B6A7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="twix17_0-1720502760680.png" alt="twix17_0-1720502760680.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;instead of side by side.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again for your help.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2024 05:26:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-pdf-output-not-starting-on-the-same-page/m-p/935093#M367655</guid>
      <dc:creator>twix17</dc:creator>
      <dc:date>2024-07-09T05:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: SAS pdf output not starting on the same page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-pdf-output-not-starting-on-the-same-page/m-p/935102#M367658</link>
      <description>&lt;BR /&gt;/*PRINT TABLE*/&lt;BR /&gt;ods escapechar="~";&lt;BR /&gt;options nodate;&lt;BR /&gt;options orientation=landscape leftmargin=0in pageno=1 rightmargin=0in topmargin=1in bottommargin=1in;&lt;BR /&gt;ods pdf file="c:\temp\output.pdf" notoc  startpage=no ;&lt;BR /&gt;title;&lt;BR /&gt;/* Display Header */&lt;BR /&gt;proc report data=sashelp.class nowd style(report)={just=left cellpadding=0 cellspacing=0 };&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;/* Display Body */&lt;BR /&gt;proc report data=sashelp.class nowd style(report)={just=left cellpadding=0 cellspacing=0 };&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ods pdf close;</description>
      <pubDate>Tue, 09 Jul 2024 07:11:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-pdf-output-not-starting-on-the-same-page/m-p/935102#M367658</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-07-09T07:11:39Z</dc:date>
    </item>
  </channel>
</rss>

