<?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 in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217278#M14220</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi....I am having some difficulities using Proc Report to create a report. I have the dataset sorted and in the everything is exactly how I would like it to appear in a report. However, when the report is created, the some of the rows change their order based on 'Month'. I tried a few things and can't seem to resolve this problem. Does anyone know what I need to do to keep this from happening. Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC REPORT DATA=TALIN NOWD SPANROWS&lt;BR /&gt; STYLE(header)={background=#33cccc font_face=Calibri &lt;BR /&gt;&amp;nbsp; font_size=12pt borderwidth=1px bordercolor=black just=CENTER}&lt;BR /&gt; STYLE(COLUMN)={background=white font_face=Calibri font_size=10pt borderwidth=1px &lt;BR /&gt;&amp;nbsp; bordercolor=black just=CENTER};&lt;/P&gt;&lt;P&gt;COLUMN CalendarYear Quarter Month 'Unique Clients'n 'Unique Authors'n;&lt;/P&gt;&lt;P&gt; DEFINE CalendarYear / ORDER 'Calendar Year';&lt;BR /&gt; DEFINE Quarter / ORDER 'Quarter';&lt;BR /&gt; DEFINE Month / ORDER 'Month';&lt;BR /&gt; DEFINE 'Unique Clients'n / ORDER ORDER=DATA 'Unique Clients';&lt;BR /&gt; DEFINE 'Unique Authors'n / ORDER ORDER=DATA 'Unique Authors';&lt;BR /&gt;RUN;&lt;BR /&gt;QUIT;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 May 2015 17:46:52 GMT</pubDate>
    <dc:creator>twildone</dc:creator>
    <dc:date>2015-05-19T17:46:52Z</dc:date>
    <item>
      <title>re: Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217278#M14220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi....I am having some difficulities using Proc Report to create a report. I have the dataset sorted and in the everything is exactly how I would like it to appear in a report. However, when the report is created, the some of the rows change their order based on 'Month'. I tried a few things and can't seem to resolve this problem. Does anyone know what I need to do to keep this from happening. Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC REPORT DATA=TALIN NOWD SPANROWS&lt;BR /&gt; STYLE(header)={background=#33cccc font_face=Calibri &lt;BR /&gt;&amp;nbsp; font_size=12pt borderwidth=1px bordercolor=black just=CENTER}&lt;BR /&gt; STYLE(COLUMN)={background=white font_face=Calibri font_size=10pt borderwidth=1px &lt;BR /&gt;&amp;nbsp; bordercolor=black just=CENTER};&lt;/P&gt;&lt;P&gt;COLUMN CalendarYear Quarter Month 'Unique Clients'n 'Unique Authors'n;&lt;/P&gt;&lt;P&gt; DEFINE CalendarYear / ORDER 'Calendar Year';&lt;BR /&gt; DEFINE Quarter / ORDER 'Quarter';&lt;BR /&gt; DEFINE Month / ORDER 'Month';&lt;BR /&gt; DEFINE 'Unique Clients'n / ORDER ORDER=DATA 'Unique Clients';&lt;BR /&gt; DEFINE 'Unique Authors'n / ORDER ORDER=DATA 'Unique Authors';&lt;BR /&gt;RUN;&lt;BR /&gt;QUIT;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 17:46:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217278#M14220</guid>
      <dc:creator>twildone</dc:creator>
      <dc:date>2015-05-19T17:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: re: Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217279#M14221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have presorted the data you might want to try ORDER=Data to maintain that sort order for your variables.&lt;/P&gt;&lt;P&gt;You don't show but I suspect you have month names and are getting results in "April" "August" order.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 19:26:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217279#M14221</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-05-19T19:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: re: Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217280#M14222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If Month is a character column then in could be ordering by month name not date order. You would be best to change month to a SAS date.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 19:59:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217280#M14222</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2015-05-19T19:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: re: Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217281#M14223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi...yes I have Month as a character with full name such as January, February, etc....how would I changed this variable to a SAS Date?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 00:07:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217281#M14223</guid>
      <dc:creator>twildone</dc:creator>
      <dc:date>2015-05-21T00:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: re: Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217282#M14224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You would also need to use the year, then something like this might work (assuming your CalendarYear is numeric):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; SAS_Date = input('01' !! substr(Month,1,3) !! put(CalendarYear,4.), date9.);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 02:26:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217282#M14224</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2015-05-21T02:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: re: Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217283#M14225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the simplest way is add BLANKS before it .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if name='&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;January' then name='&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;January';&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if name='&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;February' then name='&amp;nbsp; &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;February';&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 12:34:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217283#M14225</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-05-22T12:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: re: Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217284#M14226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi...I tried your suggestion of inserting blanks before the actual months and didn't seem to work. I ended up creating another column with the Month Number and sorted by this column and this seems to work but now I have both the Months and Month Number included in my table and excel file. If I exclude the Month Number from being displayed in the table and excel file, the Output Table that is created in SAS looks fine but when it exports it to Excel, some of the months are re-arranged.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 May 2015 00:26:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217284#M14226</guid>
      <dc:creator>twildone</dc:creator>
      <dc:date>2015-05-23T00:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: re: Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217285#M14227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mine Looks good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;data&amp;nbsp; have;
length name $ 20;
 name='January'; output;
 name='February';output;
run;

data temp;
 set have;
 length n $ 20;
if name='January' then n='&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; January';
if name='February' then n='&amp;nbsp; February';
drop name;
run;

ods tagsets.excelxp file='c:\temp\x.xls';
proc report data=temp nowd;
column n;
define n/order;
run;
ods tagsets.excelxp close;


&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 May 2015 06:34:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217285#M14227</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-05-23T06:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: re: Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217286#M14228</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; Padding with blanks is not always a good technique to rely on. It doesn't work reliably in all destinations. If the OP is running at least 9.3 with TAGSETS.EXCELXP, then either of these examples should work -- either with Month number as a NOPRINT or just using a Date variable formatted with MONNAME. as shown below:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="excelxp_example.png" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/10563_excelxp_example.png" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code is at bottom of post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;data&amp;nbsp; start;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;length name $ 20;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;infile datalines dlm=',' dsd;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;input name $ val;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;return;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;datalines;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;January,10&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;February,30&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;March,40&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;April,70&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;data final;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt; set start;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt; length n $ 20;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;if name='January' then n=1;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;if name='February' then n=2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;if name = 'March' then n = 3;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;if name = 'April' then n = 4;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;dateval = mdy(n,01,2015);&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods tagsets.excelxp file='c:\temp\xx.xml' style=htmlblue&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; options(sheet_interval='none');&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;proc report data=final nowd;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;column n name&amp;nbsp; val;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;define n / order noprint;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;define name / order;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;rbreak after / summarize;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;compute before _page_;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp; line '1) Using Month Number as NOPRINT';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;endcomp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;proc report data=final nowd;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;column dateval&amp;nbsp; val;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;define dateval / order order=internal f=monname. &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)={just=l};&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;rbreak after /summarize;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;compute before _page_;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp; line '2) Using Date Variable for Ordering';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;endcomp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods tagsets.excelxp close;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 May 2015 13:59:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217286#M14228</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2015-05-23T13:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: re: Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217287#M14229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cynthia...Thank you for your help and suggestions. I ended up having to use the Month Number Approach as I tried the Dateval Approach and kept getting an error message that the Dateval needs to be character format. The Month Number approach works perfect...thanks once again for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2015 14:37:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/re-Proc-Report/m-p/217287#M14229</guid>
      <dc:creator>twildone</dc:creator>
      <dc:date>2015-05-25T14:37:33Z</dc:date>
    </item>
  </channel>
</rss>

