<?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: Help with SAS Program - Match Merge not working in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259215#M50114</link>
    <description>&lt;P&gt;Reordering should not cause the problem at least not the code you used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Clearly there are no combinations of CUSPID DATE values that match (call me Mr. Obvious)&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Do you have messages about multiple lengths specified&amp;nbsp;for BY variables?&lt;/LI&gt;
&lt;LI&gt;Are the dates actually the same? &amp;nbsp;If you imported the data from XLS it is possible that a datetime field in EXCEL was imported as a SAS DATE with a decimal part (representing&amp;nbsp;time). &amp;nbsp;Take INT(DATE) of both and see if that fixes it.&lt;/LI&gt;
&lt;LI&gt;Use $HEX. format to look at the values of CUSID from each data set. &amp;nbsp;This could reveal&amp;nbsp;leading spaces that you do not notice or other characters that appear as spaces.&lt;/LI&gt;
&lt;LI&gt;In data TEM you have &amp;nbsp;&lt;SPAN&gt;Format cusip $8.; which does not change the value but does change how it is shown to you. Or, what you see might not be what you got.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;If it ain't the program it must be the data.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 26 Mar 2016 11:01:34 GMT</pubDate>
    <dc:creator>data_null__</dc:creator>
    <dc:date>2016-03-26T11:01:34Z</dc:date>
    <item>
      <title>Help with SAS Program - Match Merge not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259209#M50109</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am writing a SAS program where I get data from Compustat and CRSP in order to do an event study.&amp;nbsp; I merged my CRSP stock return data with my CRSP market index return data with no issues.&amp;nbsp; However, I am having issues merging my Compustat data with my CRSP data - for some reason, the match merge is not working, and it does not give me any error messages.&amp;nbsp; Can someone please help me?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my SAS program - it uses remote connection to WRDS.&amp;nbsp; The issue is with the match merge at the end - in red font color.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;/*Remote Sign-on to WRDS Server*/&lt;BR /&gt;%let wrds = wrds.wharton.upenn.edu 4016;&lt;BR /&gt;options comamid=TCP remote=WRDS;&lt;BR /&gt;signon username=_prompt_;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;rsubmit;&lt;BR /&gt;*Tell SAS where to look for data on WRDS;&lt;BR /&gt;*Define directory for Compustat North America - Monthly Update;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;libname compm '/wrds/comp/sasdata/nam';&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;data tem;&lt;BR /&gt;set compm.fundq;&lt;BR /&gt;&amp;nbsp;if indfmt="INDL";&lt;BR /&gt;&amp;nbsp;if consol="C";&lt;BR /&gt;&amp;nbsp;if popsrc="D";&lt;BR /&gt;&amp;nbsp;if datafmt="STD";&lt;BR /&gt;&amp;nbsp;* Get Compustat data for the Dow Jones Industrial Avg. Components for 2000 to 2015;&lt;BR /&gt;&amp;nbsp;where 2000&amp;lt;=year(datadate)&amp;lt;=2015 and tic in ('AXP', 'AAPL', 'BA', 'CAT', 'CVX', 'CSCO',&lt;BR /&gt;&amp;nbsp;'KO', 'DIS', 'DD', 'XOM', 'GE', 'GS', 'HD', 'IBM', 'INTC', 'JNJ', 'JPM', 'MCD', 'MMM',&lt;BR /&gt;&amp;nbsp;'MRK', 'MSFT', 'NKE', 'PFE', 'PG', 'TRV', 'UNH', 'UTX', 'VZ', 'V', 'WMT');&lt;BR /&gt;&amp;nbsp;Format cusip $8.;&lt;BR /&gt;&amp;nbsp;Keep cusip tic conm datadate datafqtr rdq epsfxq;&lt;BR /&gt;Run;&lt;BR /&gt;* Download the dataset from WRDS to local library;&lt;BR /&gt;Proc sort data=tem;&lt;BR /&gt;&amp;nbsp;By cusip;&lt;BR /&gt;Proc download data=tem out=cmpst_raw;&lt;BR /&gt;Run;&lt;BR /&gt;endrsubmit;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;rsubmit;&lt;BR /&gt;*Define directory for CRSP - Monthly Update;&lt;BR /&gt;libname daily '/wrds/crsp/sasdata/a_stock';&lt;BR /&gt;Data tem2;&lt;BR /&gt;&amp;nbsp;Set daily.dsf (keep = cusip date ret);&lt;BR /&gt;&amp;nbsp;* Get CRSP Daily stock return data for the Dow Jones Industrial Avg. components from 2000 to 2015. CUSIP&lt;BR /&gt;&amp;nbsp;is used since CRSP does not have ticker;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;where 2000&amp;lt;=year(date)&amp;lt;=2015 and cusip in ('02581610','88579Y10','03783310','09702310','14912310',&lt;BR /&gt;&amp;nbsp;'16676410','17275R10','89417000','38141G10','92826C83','59491810','93114210','91301710','91324P10',&lt;BR /&gt;&amp;nbsp;'74271810','71708110','65410610','58933Y10','58013510','47816010','45920010','45814010','43707610');&lt;BR /&gt;&amp;nbsp;format date yymmddn8.;&lt;BR /&gt;Run;&lt;BR /&gt;Proc sort data = tem2;&lt;BR /&gt;&amp;nbsp;By date cusip;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;* Download the dataset from WRDS to local library;&lt;/DIV&gt;&lt;DIV&gt;Proc download data=tem2 out=crsp_stk;&lt;BR /&gt;Run;&lt;BR /&gt;endrsubmit;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;rsubmit;&lt;BR /&gt;libname ind '/wrds/crsp/sasdata/a_indexes';&lt;BR /&gt;* Get daily market index data for January 2000 to December 31, 2015;&lt;BR /&gt;Data tem3;&lt;BR /&gt;&amp;nbsp;set ind.dsic (keep=caldt vwretd ewretd);&lt;BR /&gt;&amp;nbsp;Where '03Jan2000'd&amp;lt;=caldt&amp;lt;='31Dec2015'd;&lt;BR /&gt;&amp;nbsp;Format date yymmddn8.;&lt;BR /&gt;&amp;nbsp;Rename caldt=date;&lt;BR /&gt;Run;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Proc sort data = tem3;&lt;BR /&gt;&amp;nbsp;By date;&lt;BR /&gt;Proc download data=tem3 out=crsp_indx;&lt;BR /&gt;Run;&lt;BR /&gt;endrsubmit;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Data crsp_stk_indx;&lt;BR /&gt;&amp;nbsp;merge crsp_stk crsp_indx;&lt;BR /&gt;&amp;nbsp;By date;&lt;BR /&gt;Run;&lt;BR /&gt;Data crsp_stk_indx;&lt;BR /&gt;&amp;nbsp;set crsp_stk_indx;&lt;BR /&gt;&amp;nbsp;where cusip ne " " and vwretd ne .; * Remove records that have no CUSIP or no Mkt return data;&lt;BR /&gt;Run;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;* Modify Compustat quarterly earnings file to calculate unexpected earnings based on previous earnings;&lt;BR /&gt;Data cmpst_raw2;&lt;BR /&gt;&amp;nbsp;Set cmpst_raw;&lt;BR /&gt;&amp;nbsp;By cusip;&lt;BR /&gt;&amp;nbsp;If epsfxq and rdq; * Keep records where earnings and report date for quarterly earnings are not missing;&lt;BR /&gt;&amp;nbsp;ueps = epsfxq - lag(epsfxq); * UEPS is defined as the current earnings less prior qtr earnings;&lt;BR /&gt;&amp;nbsp;If ueps &amp;lt; 0 then evntdum=1;&lt;BR /&gt;&amp;nbsp;Else if ueps &amp;gt; 0 then evntdum=2;&lt;BR /&gt;&amp;nbsp;Else evntdum = 0;&lt;BR /&gt;&amp;nbsp;if first.cusip then ueps = 0;&lt;BR /&gt;&amp;nbsp;If ueps; * Keep records where UEPS does not equal to zero;&lt;BR /&gt;&amp;nbsp;keep cusip rdq epsfxq ueps evntdum; * Keep only CUSIP, Report date for quarterly earnings, earnings and UEPS;&lt;BR /&gt;Run;&lt;/DIV&gt;&lt;DIV&gt;* Create dates 90 days prior to event date (rdq) and 10 days after event date (rdq);&lt;/DIV&gt;&lt;DIV&gt;data cmpst_int;&lt;BR /&gt;&amp;nbsp;Format date yymmddn8.;&lt;BR /&gt;&amp;nbsp;set cmpst_raw2;&lt;BR /&gt;&amp;nbsp;do date = rdq - 90 to rdq + 10;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;output;&lt;BR /&gt;&amp;nbsp;end;&lt;BR /&gt;keep cusip date rdq evntdum;&lt;BR /&gt;run;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;proc sort data=cmpst_int;&lt;BR /&gt;&amp;nbsp;by cusip date;&lt;BR /&gt;run;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Data crsp_stk_indx;&lt;BR /&gt;&amp;nbsp;Set crsp_stk_indx (keep = cusip date ret vwretd evntdum);&lt;BR /&gt;Proc sort data = crsp_stk_indx;&lt;BR /&gt;&amp;nbsp;By cusip date;&lt;BR /&gt;Run;&lt;BR /&gt;Data crsp_stk_indx;&lt;BR /&gt;&amp;nbsp;Retain date cusip ret vwretd;&lt;BR /&gt;&amp;nbsp;set crsp_stk_indx;&lt;BR /&gt;Run;&lt;BR /&gt;&lt;FONT color="#ff0000"&gt;Data crsp_cmpst;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#ff0000"&gt;&amp;nbsp;Merge cmpst_int (in=a)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#ff0000"&gt;&amp;nbsp;crsp_stk_indx (in=b);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#ff0000"&gt;&amp;nbsp;By cusip date;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#ff0000"&gt;&amp;nbsp;If a and b;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#ff0000"&gt;Run;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT color="#000000"&gt;Thanks!&lt;/FONT&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2016 09:07:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259209#M50109</guid>
      <dc:creator>mig7126</dc:creator>
      <dc:date>2016-03-26T09:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Help with SAS Program - Match Merge not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259210#M50110</link>
      <description>"Not working" meaning what? No matches?&lt;BR /&gt;As with all this type of trouble shooting you need to carefully check your input data to the specific step.&lt;BR /&gt;&lt;BR /&gt;What do you suspect to happen with the RETAIN in last crsp_stk_indx step?</description>
      <pubDate>Sat, 26 Mar 2016 09:32:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259210#M50110</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-03-26T09:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: Help with SAS Program - Match Merge not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259211#M50111</link>
      <description>&lt;P&gt;Thanks for your quick reply.&amp;nbsp; When I mean not working is that I get no matches.&amp;nbsp; The reason that I added the RETAIN in the last crsp_stk_indx step was to re-order the columns in the data table so that Date column would appear before the CUSIP column, which is the same way as the cmpst_int data table.&amp;nbsp; However, if&amp;nbsp;I remove these re-ordering steps, I still do not get any matches.&amp;nbsp; I troubleshooted the program last night for quite a few hours and cannot figure out why there are no matches.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate your help to see if you have any other thoughts on why I don't have any matches.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2016 09:38:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259211#M50111</guid>
      <dc:creator>mig7126</dc:creator>
      <dc:date>2016-03-26T09:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Help with SAS Program - Match Merge not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259212#M50112</link>
      <description>&lt;P&gt;Yes, no matches.&amp;nbsp; I took out the RETAIN steps, and I still do not get any matches.&amp;nbsp; I troubleshooted the program extensively and I cannot figure it out.&amp;nbsp; Can you please let me know your thoughts?&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2016 09:41:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259212#M50112</guid>
      <dc:creator>mig7126</dc:creator>
      <dc:date>2016-03-26T09:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: Help with SAS Program - Match Merge not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259215#M50114</link>
      <description>&lt;P&gt;Reordering should not cause the problem at least not the code you used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Clearly there are no combinations of CUSPID DATE values that match (call me Mr. Obvious)&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Do you have messages about multiple lengths specified&amp;nbsp;for BY variables?&lt;/LI&gt;
&lt;LI&gt;Are the dates actually the same? &amp;nbsp;If you imported the data from XLS it is possible that a datetime field in EXCEL was imported as a SAS DATE with a decimal part (representing&amp;nbsp;time). &amp;nbsp;Take INT(DATE) of both and see if that fixes it.&lt;/LI&gt;
&lt;LI&gt;Use $HEX. format to look at the values of CUSID from each data set. &amp;nbsp;This could reveal&amp;nbsp;leading spaces that you do not notice or other characters that appear as spaces.&lt;/LI&gt;
&lt;LI&gt;In data TEM you have &amp;nbsp;&lt;SPAN&gt;Format cusip $8.; which does not change the value but does change how it is shown to you. Or, what you see might not be what you got.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;If it ain't the program it must be the data.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2016 11:01:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259215#M50114</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2016-03-26T11:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: Help with SAS Program - Match Merge not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259216#M50115</link>
      <description>1. Run a proc contents on the two data sets. Look for differences in the two variables&lt;BR /&gt;2. Strip formats and run a proc freq on the two variables in each dataset. &lt;BR /&gt;&lt;BR /&gt;If you can, post results here for help diagnosing issue.</description>
      <pubDate>Sat, 26 Mar 2016 12:16:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259216#M50115</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-03-26T12:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: Help with SAS Program - Match Merge not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259242#M50118</link>
      <description>&lt;P&gt;Excellent suggestions &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15410"&gt;@data_null__﻿&lt;/a&gt;.&amp;nbsp;I would suggest using ROUND(DATE) instead of INT(DATE) to fix the Excel date problem as I have seen Excel (or MS-Access) dates being imported with values such as 12345.999998&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Mar 2016 03:16:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259242#M50118</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2016-03-27T03:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: Help with SAS Program - Match Merge not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259243#M50119</link>
      <description>&lt;P&gt;Thanks everyone for your suggestions.&amp;nbsp; One key point:&amp;nbsp; The data is not coming from Excel; if you look at the SAS code, I am connecting remotely to WRDS to get Compustat and CRSP data directly, and then bringing it into SAS.&amp;nbsp; Therefore, this is not the issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will try the other suggestions, specifically the PROC CONTENTS and PROC FREQ to see if there are any issues with the data formats, and wil let you know.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Mar 2016 03:54:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259243#M50119</guid>
      <dc:creator>mig7126</dc:creator>
      <dc:date>2016-03-27T03:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Help with SAS Program - Match Merge not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259246#M50122</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for your great suggestions. I ran PROC CONTENTS and uncovered that CUSIP in CRSP_STK_INDX data table was not the same format as CUSIP in CMPST_INT data table.&amp;nbsp; Once I made the format change, the match merge now works!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you again for your great help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Mar 2016 05:41:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259246#M50122</guid>
      <dc:creator>mig7126</dc:creator>
      <dc:date>2016-03-27T05:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: Help with SAS Program - Match Merge not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259257#M50125</link>
      <description>&lt;P&gt;MERGE does not use formatted value of a BY variable to do matching (unless the GROUPFORMAT&amp;nbsp;option is used on the BY statement). &amp;nbsp;What did you actually change?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Mar 2016 12:45:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259257#M50125</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2016-03-27T12:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Help with SAS Program - Match Merge not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259258#M50126</link>
      <description>&lt;P&gt;Hi data_null_,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I formatted the variable CUSIP in the CMPST_INT data table in a Data step, not in the MERGE statement:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data CMPST_INT;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Format CUSIP $8. Date yymmddn8.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Mar 2016 12:58:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-SAS-Program-Match-Merge-not-working/m-p/259258#M50126</guid>
      <dc:creator>mig7126</dc:creator>
      <dc:date>2016-03-27T12:58:00Z</dc:date>
    </item>
  </channel>
</rss>

