<?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 Help! in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-Help/m-p/94664#M26751</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one more question.&amp;nbsp; Is there a way for proc report NOT to sort the data by row?&amp;nbsp;&amp;nbsp; I would like the report to be in the same order as below (notice ID is not in any particular alphabetical order) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;DATA:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ID&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800000;"&gt;_1&amp;nbsp; _2&amp;nbsp;&amp;nbsp; _3&amp;nbsp; _4&amp;nbsp; _5&amp;nbsp; _7&amp;nbsp; _8&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;QE&amp;nbsp; 45&amp;nbsp; 78&amp;nbsp;&amp;nbsp; 44&amp;nbsp; 09&amp;nbsp; 74&amp;nbsp;&amp;nbsp; 77&amp;nbsp; 99&lt;/P&gt;&lt;P&gt;BF&amp;nbsp; 20&amp;nbsp;&amp;nbsp; 43&amp;nbsp;&amp;nbsp; 65&amp;nbsp; 87&amp;nbsp; 32&amp;nbsp;&amp;nbsp; 40&amp;nbsp; 48&lt;/P&gt;&lt;P&gt;ER&amp;nbsp; 33&amp;nbsp; 55&amp;nbsp;&amp;nbsp; 66&amp;nbsp;&amp;nbsp; 77&amp;nbsp; 88&amp;nbsp;&amp;nbsp; 66&amp;nbsp; 88&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you again !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 14 Oct 2012 15:13:40 GMT</pubDate>
    <dc:creator>KevinC_</dc:creator>
    <dc:date>2012-10-14T15:13:40Z</dc:date>
    <item>
      <title>Proc Report Help!</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-Help/m-p/94659#M26746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to create a report with numeric headers (i.e. 1 2 3 4 5 etc.) using proc report. Each number represents a work day of the month (1=1st work day of the month, notice 6 is skipped because it's a weekend).&amp;nbsp; The code below is manually updated to add a new day of data (next one would be _9) and produce a new report everyday.&amp;nbsp; The code works for that.&amp;nbsp; BUT I am trying to automate this process without manually updating the program daily.&amp;nbsp; The problem is with the column statement in proc report (high lighted in brown).&amp;nbsp; If&amp;nbsp; I pre-define all the work days of the month (_1 thru _30 or _31) proc report will generate an error "variable _XX not found".&amp;nbsp;&amp;nbsp; Do I make sense?&amp;nbsp; Does anyone have any suggestions on getting around this obsticle?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really appreciate any input from anyone!!&lt;/P&gt;&lt;P&gt;Thank you &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;DATA:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ID&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800000;"&gt; _1&amp;nbsp; _2&amp;nbsp;&amp;nbsp; _3&amp;nbsp; _4&amp;nbsp; _5&amp;nbsp; _7&amp;nbsp; _8&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;AA&amp;nbsp; 45&amp;nbsp; 78&amp;nbsp;&amp;nbsp; 44&amp;nbsp; 09&amp;nbsp; 74&amp;nbsp;&amp;nbsp; 77&amp;nbsp; 99&lt;/P&gt;&lt;P&gt;BF&amp;nbsp; 20&amp;nbsp;&amp;nbsp; 43&amp;nbsp;&amp;nbsp; 65&amp;nbsp; 87&amp;nbsp; 32&amp;nbsp;&amp;nbsp; 40&amp;nbsp; 48&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;CODE:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;data new1;&lt;/P&gt;&lt;P&gt;set new0;&lt;/P&gt;&lt;P&gt;label id='ID' _1='1' _2='2' _3='3' _4='4' _5='5' _6='6' _7='7' _8='8';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc report data=new1;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;column&lt;/SPAN&gt; id &lt;SPAN style="color: #993300;"&gt;_1-_5 _7 _8&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;define id /group;&lt;/P&gt;&lt;P&gt;rbreak after /summarize;&lt;/P&gt;&lt;P&gt;compute after;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id = 'Total';&lt;/P&gt;&lt;P&gt;endcomp;&lt;/P&gt;&lt;P&gt;run;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Oct 2012 15:29:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-Help/m-p/94659#M26746</guid>
      <dc:creator>KevinC_</dc:creator>
      <dc:date>2012-10-13T15:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Help!</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-Help/m-p/94660#M26747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;let me make myself a little more clear about what I am trying to achive: How do I pre-define all the work days of the month (_1 thru _31) in the COLUMN statement in proc report ahead of time ?&amp;nbsp; Or is there a way to include only the non-future days in the COLUMN statement and automatically add a new work day everyday?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help please and Thank you again!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Oct 2012 15:41:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-Help/m-p/94660#M26747</guid>
      <dc:creator>KevinC_</dc:creator>
      <dc:date>2012-10-13T15:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Help!</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-Help/m-p/94661#M26748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why not just use a variable list in the COLUMN statement?&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 12pt;"&gt;column id _: ;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Oct 2012 17:16:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-Help/m-p/94661#M26748</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2012-10-13T17:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Help!</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-Help/m-p/94662#M26749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; There is nothing you can do in PROC REPORT to have a dynamic number of variables in the COLUMN statement unless&lt;/P&gt;&lt;P&gt;1) you can figure out a variable list method that will work from day to day&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;2) restructure your data so that the "day" variable value (1, 2, 3, etc) appear automatically because your DAY variable can be an ACROSS item&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;3) try to "macro-ize" your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I am not sure which method will work for you. Your variable names look like they came from PROC TRANSPOSE and, if that is the case, then the ACROSS method might work for you without needing a TRANSPOSE. Consider the following example (using differently structured data).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I made 2 separate datasets -- one for 5 days and one for 8 days. With the data in the form of 1 obs per day and a DAY variable, then ACROSS will work for you and you don't have the issue that you posed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; If your data is NOT coming from TRANSPOSE, then your choices are the original 3 choices above.&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;** Make some data for 5 days and 8 days;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;** in order to have 2 datasets for testing;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;data five_days&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; eight_days;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; length idvar $5;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; infile datalines;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; input idvar day amt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; if day le 5 then output five_days eight_days;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; else if day gt 6 then output eight_days;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;return;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;datalines;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;AA 1 45&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;AA 2 78&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;AA 3 44&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;AA 4 09&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;AA 5 74&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;AA 7 77&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;AA 8 99&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;BF 1 20&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;BF 2 43&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;BF 3 65&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;BF 4 87&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;BF 5 32&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;BF 7 40&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;BF 8 48&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods html file='c:\temp\across_method.html';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; proc report data=five_days nowd split='_';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title '1a) Five Days';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; column IDvar amt,day amt=Tot;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define IDvar / group;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define day / across;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define amt / sum ' ';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define Tot / sum 'Total';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; rbreak after / summarize;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; compute after;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; idvar = 'Total';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; endcomp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc report data=eight_days nowd split='_';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title '1b) Eight Days';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; column IDvar amt,day amt=Tot;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define IDvar / group;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define day / across;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define amt / sum ' ';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define Tot / sum 'Total';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; rbreak after / summarize;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; compute after;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; idvar = 'Total';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; endcomp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods html close;&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11384iA434D989406B0F30/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="diff_num_days.png" title="diff_num_days.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Oct 2012 17:17:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-Help/m-p/94662#M26749</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-10-13T17:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Help!</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-Help/m-p/94663#M26750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WOW, Cynthia &amp;amp; Tom!!&amp;nbsp; Thank you both for your suggestions!&amp;nbsp; They both worked!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cynthia,&amp;nbsp; Thank you very much for your explaination, detailed input, and the attached test data!&amp;nbsp; Your inputs are greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you both again!!!&amp;nbsp; &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Oct 2012 17:54:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-Help/m-p/94663#M26750</guid>
      <dc:creator>KevinC_</dc:creator>
      <dc:date>2012-10-13T17:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Help!</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-Help/m-p/94664#M26751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one more question.&amp;nbsp; Is there a way for proc report NOT to sort the data by row?&amp;nbsp;&amp;nbsp; I would like the report to be in the same order as below (notice ID is not in any particular alphabetical order) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;DATA:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ID&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800000;"&gt;_1&amp;nbsp; _2&amp;nbsp;&amp;nbsp; _3&amp;nbsp; _4&amp;nbsp; _5&amp;nbsp; _7&amp;nbsp; _8&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;QE&amp;nbsp; 45&amp;nbsp; 78&amp;nbsp;&amp;nbsp; 44&amp;nbsp; 09&amp;nbsp; 74&amp;nbsp;&amp;nbsp; 77&amp;nbsp; 99&lt;/P&gt;&lt;P&gt;BF&amp;nbsp; 20&amp;nbsp;&amp;nbsp; 43&amp;nbsp;&amp;nbsp; 65&amp;nbsp; 87&amp;nbsp; 32&amp;nbsp;&amp;nbsp; 40&amp;nbsp; 48&lt;/P&gt;&lt;P&gt;ER&amp;nbsp; 33&amp;nbsp; 55&amp;nbsp;&amp;nbsp; 66&amp;nbsp;&amp;nbsp; 77&amp;nbsp; 88&amp;nbsp;&amp;nbsp; 66&amp;nbsp; 88&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you again !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Oct 2012 15:13:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-Help/m-p/94664#M26751</guid>
      <dc:creator>KevinC_</dc:creator>
      <dc:date>2012-10-14T15:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Help!</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-Help/m-p/94665#M26752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Never mind my last question.&amp;nbsp; I found the answer:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define ID/ order = data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you ! &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Oct 2012 15:22:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Report-Help/m-p/94665#M26752</guid>
      <dc:creator>KevinC_</dc:creator>
      <dc:date>2012-10-14T15:22:42Z</dc:date>
    </item>
  </channel>
</rss>

