<?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 Number of months in which the company remain in same zip code area for a given year in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58883#M16561</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi art297,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much. I will also explore more for SAS transposition methods for my future use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;mspak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Mar 2012 15:22:26 GMT</pubDate>
    <dc:creator>mspak</dc:creator>
    <dc:date>2012-03-07T15:22:26Z</dc:date>
    <item>
      <title>Number of months in which the company remain in same zip code area for a given year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58871#M16549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good days to all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I attached a file containing the following variables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;crsp_fundn = Identification code for a company&lt;/P&gt;&lt;P&gt;chgdt = Beginning date for contact information&lt;/P&gt;&lt;P&gt;chgenddt = Ending date for contact information&lt;/P&gt;&lt;P&gt;City =City for contact information&lt;/P&gt;&lt;P&gt;State = State for contact information&lt;/P&gt;&lt;P&gt;zip = Zipcodes for contact information. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My main task now is to calculate 'number of months in which the company keep an unique zipcode for a given year' starting for year 2003 - 2010. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, company with crsp_fundn=105, keep the same zipcode for 12 mths for each year 2003 - 2010. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My expected output:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All my input:&lt;/P&gt;&lt;P&gt;crsp_fundn = Identification code for a company&lt;/P&gt;&lt;P&gt;chgdt = Beginning date for contact information&lt;/P&gt;&lt;P&gt;chgenddt = Ending date for contact information&lt;/P&gt;&lt;P&gt;City =City for contact information&lt;/P&gt;&lt;P&gt;State = State for contact information&lt;/P&gt;&lt;P&gt;zip = Zipcodes for contact information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plus:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;number of months which company keep a given zipcode for a specific year (for years 2003 - 2010; one value ie. months for each year)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mspak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Feb 2012 14:33:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58871#M16549</guid>
      <dc:creator>mspak</dc:creator>
      <dc:date>2012-02-19T14:33:23Z</dc:date>
    </item>
    <item>
      <title>Number of months in which the company remain in same zip code area for a given year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58872#M16550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While SAS has functions to count the number of month boundaries crossed between two dates, I think that would end up giving you rather biased results.&amp;nbsp; I think you could get more accurate results by obtaining the number of days at particular zip codes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following is only offered as a possible method.&amp;nbsp; I did not check to ensure that it is doing everything correctly .. you would have to do that on your own:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname thedata "c:\";&lt;/P&gt;&lt;P&gt;data temp (rename=&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (years1=in2003&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; years2=in2004&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; years3=in2005&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; years4=in2006&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; years5=in2007&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; years6=in2008&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; years7=in2009&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; years8=in2010))&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set thedata.mutualcom (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; where=(year(chgdt) le 2010 and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; year(chgdt) gt 2002)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; drop=city state);&lt;/P&gt;&lt;P&gt;&amp;nbsp; array years(2003:2010);&lt;/P&gt;&lt;P&gt;&amp;nbsp; if year(chgenddt) ge 2011 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; chgenddt='31DEC2010'd;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if year(chgdt) lt 2003 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; chgdt='01JAN2003'd;&lt;/P&gt;&lt;P&gt;&amp;nbsp; do year=year(chgdt) to year(chgenddt);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if year ne year(chgenddt) then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end=mdy(12,31,year);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else end=chgenddt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if year gt year(chgdt) then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; start=mdy(1,1,year);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else start=chgdt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; years(year)=end-start+1;&lt;/P&gt;&lt;P&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc summary data=temp nway;&lt;/P&gt;&lt;P&gt;&amp;nbsp; var in:;&lt;/P&gt;&lt;P&gt;&amp;nbsp; class crsp_fundn zip;&lt;/P&gt;&lt;P&gt;&amp;nbsp; output out=want (drop=_:)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum=;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Feb 2012 16:49:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58872#M16550</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-19T16:49:43Z</dc:date>
    </item>
    <item>
      <title>Number of months in which the company remain in same zip code area for a given year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58873#M16551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much &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>Mon, 20 Feb 2012 06:24:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58873#M16551</guid>
      <dc:creator>mspak</dc:creator>
      <dc:date>2012-02-20T06:24:01Z</dc:date>
    </item>
    <item>
      <title>Number of months in which the company remain in same zip code area for a given year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58874#M16552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You'd better post some output to clarify what you want.&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;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2012 07:11:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58874#M16552</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-02-20T07:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: Number of months in which the company remain in same zip code area for a given year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58875#M16553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I ran the program suggested&amp;nbsp; and yield the output with file name "fmutualzip". I get the number of days in which the mutual fund companies available for a given year. I would like to set a criteria that if a particular mutual fund available for 180 or more days, then the firms is considered as "available for the year".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My purpose is to calculate the distance between the US firms (as attached file "comp") and mutual fund companies available for years 2003 to 2010.&amp;nbsp; How should I restructure the data as per in "fmutualzip" into a format that enables distance calculation?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for any help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;MEI SEN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 05:55:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58875#M16553</guid>
      <dc:creator>mspak</dc:creator>
      <dc:date>2012-03-07T05:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: Number of months in which the company remain in same zip code area for a given year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58876#M16554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry. I don't understand what you mean.&lt;/P&gt;&lt;P&gt;What is Distance you refered to ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 07:00:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58876#M16554</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-03-07T07:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: Number of months in which the company remain in same zip code area for a given year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58877#M16555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;geographic distance..I have zipcodes for both mutual fund companies and US listed companies in files. I used zipcodes to calculate distance between two locations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As all firms in US, the zipcitydistance function is suitable for distance calculation. But i don't know how to restructure the data in "fmutualzip"&amp;nbsp; into the following columns:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;crsp_fundn (mutual fund identification code)&amp;nbsp;&amp;nbsp; zip&amp;nbsp; year&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wish only have one "year" column. The mutual fund which available for 180 days or more considered as "mutual companies "available" for a given year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mspak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 07:07:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58877#M16555</guid>
      <dc:creator>mspak</dc:creator>
      <dc:date>2012-03-07T07:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: Number of months in which the company remain in same zip code area for a given year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58878#M16556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do the zipcode for mutual funds change over time?&amp;nbsp; If not, I would just get rid of all of the duplicate records in file comp and eliminate the year variable from that file.&amp;nbsp; If they do change over time, I think you will have to restructure one of your files so that they only have one year variable each, or both have wide records that include fields for multiple years.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 14:11:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58878#M16556</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-03-07T14:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: Number of months in which the company remain in same zip code area for a given year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58879#M16557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi art297,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the zipcodes for mutual funds might change as they might move their headquarter to another area. The original files that I posted have all starting date and ending date for the same zipcode for a given mutual funds. I couldn't include the mutual funds that have been in a given area for a very short period of time (perhaps only 1 day). Therefore, I set a criteria that if the mutual fund is available for at least 180 days for a given year, then I should calculate the distance between the mutual fund companies and the US listed firms. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the final stage, I have to calculate how many mutual funds companies are located within 60 miles radius from the US firms' headquarter. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;mspak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 14:23:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58879#M16557</guid>
      <dc:creator>mspak</dc:creator>
      <dc:date>2012-03-07T14:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Number of months in which the company remain in same zip code area for a given year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58880#M16558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then, if it were me, I would transpose the fmutual file so that it (1) each year was on a separate record (with the same variable name as in your comp file) and (2) only keep those records that meet your criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, the problem becomes a simple one-to-one merge that can either be done in a datastep or with proc sql.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 14:29:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58880#M16558</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-03-07T14:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: Number of months in which the company remain in same zip code area for a given year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58881#M16559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new user of SAS and still exploring countless of the SAS functions. As per information that I read, I can use&amp;nbsp; either proc transpose or proc summary using IDGROUP option or data step to transpose data. Let me to explore more. Will these tranposition methods give rise to the same result? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;mspak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 14:53:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58881#M16559</guid>
      <dc:creator>mspak</dc:creator>
      <dc:date>2012-03-07T14:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: Number of months in which the company remain in same zip code area for a given year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58882#M16560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes they can provide the same results if applied correctly.&amp;nbsp; However, in your case, I think a simple datastep would be both easier and quicker.&amp;nbsp; e.g.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname art "c:\art";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want (drop=in:);&lt;/P&gt;&lt;P&gt;&amp;nbsp; set art.fmutualzip;&lt;/P&gt;&lt;P&gt;&amp;nbsp; array years in:;&lt;/P&gt;&lt;P&gt;&amp;nbsp; do over years;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if years ge 180 then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; year=input(substr(vname(years),3),4.);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 15:14:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58882#M16560</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-03-07T15:14:16Z</dc:date>
    </item>
    <item>
      <title>Number of months in which the company remain in same zip code area for a given year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58883#M16561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi art297,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much. I will also explore more for SAS transposition methods for my future use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;mspak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 15:22:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-months-in-which-the-company-remain-in-same-zip-code/m-p/58883#M16561</guid>
      <dc:creator>mspak</dc:creator>
      <dc:date>2012-03-07T15:22:26Z</dc:date>
    </item>
  </channel>
</rss>

