<?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: order variable should print every page start in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/order-variable-should-print-every-page-start/m-p/612209#M178580</link>
    <description>&lt;P&gt;From the documentation regarding Order Variables in Proc Report in the Concepts section 'Laying Out a Report":&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;PROC REPORT does not repeat the value of an order variable from one row to the next if the value does not change,&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So what you want apparently does not match the role of an order variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 16 Dec 2019 20:42:53 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-12-16T20:42:53Z</dc:date>
    <item>
      <title>order variable should print every page start</title>
      <link>https://communities.sas.com/t5/SAS-Programming/order-variable-should-print-every-page-start/m-p/611911#M178456</link>
      <description>&lt;P&gt;ods rtf file='D:\new\testing.rtf' ;&lt;BR /&gt;proc report data=sashelp.cars nowd style=[rules=none] ;&lt;BR /&gt;column origin make type msrp ;&lt;BR /&gt;define origin /order id;&lt;BR /&gt;break after origin/page ;&lt;BR /&gt;by origin ;&lt;BR /&gt;run;&lt;BR /&gt;ods rtf close ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in testing file observe last page . Last page two records related but the origin column showing empty.&lt;/P&gt;
&lt;P&gt;So the order variable value should be print page start&lt;/P&gt;</description>
      <pubDate>Sun, 15 Dec 2019 19:29:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/order-variable-should-print-every-page-start/m-p/611911#M178456</guid>
      <dc:creator>thanikondharish</dc:creator>
      <dc:date>2019-12-15T19:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: order variable should print every page start</title>
      <link>https://communities.sas.com/t5/SAS-Programming/order-variable-should-print-every-page-start/m-p/611913#M178458</link>
      <description>&lt;P&gt;RTF (and HTML) do not really create pages. Did you try directing it to an ODS destination that actually supports pages, like a PDF file or plain old text listing output.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does it still not replicate the current value of ORIGIN on the new second page of a value that requires more than one page?&lt;/P&gt;</description>
      <pubDate>Sun, 15 Dec 2019 19:55:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/order-variable-should-print-every-page-start/m-p/611913#M178458</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-12-15T19:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: order variable should print every page start</title>
      <link>https://communities.sas.com/t5/SAS-Programming/order-variable-should-print-every-page-start/m-p/612209#M178580</link>
      <description>&lt;P&gt;From the documentation regarding Order Variables in Proc Report in the Concepts section 'Laying Out a Report":&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;PROC REPORT does not repeat the value of an order variable from one row to the next if the value does not change,&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So what you want apparently does not match the role of an order variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2019 20:42:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/order-variable-should-print-every-page-start/m-p/612209#M178580</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-12-16T20:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: order variable should print every page start</title>
      <link>https://communities.sas.com/t5/SAS-Programming/order-variable-should-print-every-page-start/m-p/612211#M178582</link>
      <description>&lt;P&gt;Do you need to use PROC REPORT?&amp;nbsp; Can you just use PROC PRINT?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have ;
  origin=1;
  do row=1 to 5; output; end;
  origin=2 ;
  do row=1 to 100; output; end;
  origin=3 ;
  do row=1 to 5; output; end;
run;

proc print data=have;
  by origin;
  id origin;
  pageby origin;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 16 Dec 2019 20:52:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/order-variable-should-print-every-page-start/m-p/612211#M178582</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-12-16T20:52:43Z</dc:date>
    </item>
  </channel>
</rss>

