<?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: proc report into one single page in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/proc-report-into-one-single-page/m-p/46327#M12331</link>
    <description>Yes - you have addressed the pagination issue correctly, per the SAS DOC (link below).  Your approach is a correct one.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/resources/papers/ProcReportBasics.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/ProcReportBasics.pdf&lt;/A&gt;</description>
    <pubDate>Mon, 25 Jan 2010 16:06:16 GMT</pubDate>
    <dc:creator>sbb</dc:creator>
    <dc:date>2010-01-25T16:06:16Z</dc:date>
    <item>
      <title>proc report into one single page</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-report-into-one-single-page/m-p/46324#M12328</link>
      <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
I want to produce a raport.&lt;BR /&gt;
Here's is code:&lt;BR /&gt;
&lt;BR /&gt;
*****************************;&lt;BR /&gt;
proc sort&lt;BR /&gt;
	data = sashelp.class &lt;BR /&gt;
	out = AAA;&lt;BR /&gt;
	by sex;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc report&lt;BR /&gt;
	data = AAA nowindows;&lt;BR /&gt;
	by sex; &lt;BR /&gt;
	columns sex age name height weight;&lt;BR /&gt;
	define sex/order noprint;&lt;BR /&gt;
	define age/group;&lt;BR /&gt;
quit;&lt;BR /&gt;
*****************************;&lt;BR /&gt;
&lt;BR /&gt;
The problem is that i want one raport table, but i get two separated tables(pages). I want to get one table/page.&lt;BR /&gt;
I'm using sas 9.1, so BYPAGENO option is not valid.</description>
      <pubDate>Mon, 25 Jan 2010 10:59:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-report-into-one-single-page/m-p/46324#M12328</guid>
      <dc:creator>SAS_user</dc:creator>
      <dc:date>2010-01-25T10:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: proc report into one single page</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-report-into-one-single-page/m-p/46325#M12329</link>
      <description>Doesn't removing the by option work.</description>
      <pubDate>Mon, 25 Jan 2010 12:18:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-report-into-one-single-page/m-p/46325#M12329</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-01-25T12:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: proc report into one single page</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-report-into-one-single-page/m-p/46326#M12330</link>
      <description>Yes it works. But u don't get the point. &lt;BR /&gt;
I want the line that indicates the sex before any of data is outputted.&lt;BR /&gt;
I have already solved the problem, by computing temporary variable, and adding a line.&lt;BR /&gt;
&lt;BR /&gt;
If it would be helpful for anybody here is code.&lt;BR /&gt;
&lt;BR /&gt;
proc report&lt;BR /&gt;
	data = sashelp.class nowindows;&lt;BR /&gt;
	columns sex age name height weight;&lt;BR /&gt;
	define sex/order noprint;&lt;BR /&gt;
	define name/order;&lt;BR /&gt;
	define age/group;&lt;BR /&gt;
	define height/order;&lt;BR /&gt;
	define weight/order;&lt;BR /&gt;
	compute before sex;&lt;BR /&gt;
		text = "Sex = " ||sex;&lt;BR /&gt;
		line text $40.;&lt;BR /&gt;
	endcomp;&lt;BR /&gt;
quit;</description>
      <pubDate>Mon, 25 Jan 2010 12:51:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-report-into-one-single-page/m-p/46326#M12330</guid>
      <dc:creator>SAS_user</dc:creator>
      <dc:date>2010-01-25T12:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: proc report into one single page</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-report-into-one-single-page/m-p/46327#M12331</link>
      <description>Yes - you have addressed the pagination issue correctly, per the SAS DOC (link below).  Your approach is a correct one.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/resources/papers/ProcReportBasics.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/ProcReportBasics.pdf&lt;/A&gt;</description>
      <pubDate>Mon, 25 Jan 2010 16:06:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-report-into-one-single-page/m-p/46327#M12331</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-01-25T16:06:16Z</dc:date>
    </item>
  </channel>
</rss>

