<?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: ZIPCODE FOR EACH COUNTY and INTERPOLATION in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/226018#M40633</link>
    <description>&lt;P&gt;Hi Darrell,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not have the lat/long points, but I have the FIPS code for each county and state.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MSPAK&lt;/P&gt;</description>
    <pubDate>Thu, 17 Sep 2015 11:15:45 GMT</pubDate>
    <dc:creator>mspak</dc:creator>
    <dc:date>2015-09-17T11:15:45Z</dc:date>
    <item>
      <title>ZIPCODE FOR EACH COUNTY and INTERPOLATION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/225798#M40574</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a file a file with the states' and and countys' adherent level. I would like&lt;/P&gt;&lt;P&gt;1) to find the zipcodes for each of the observations.&lt;/P&gt;&lt;P&gt;2) perform a linear interpolation to replace the inherent values between missing years (for example, 1991 - 1999, 2001 - 2009, 2011 onwards) for both states' adherent level and countys' adherent level.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could anyone suggest a solution for both or either of the above requirements?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;MSPAK&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2015 11:34:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/225798#M40574</guid>
      <dc:creator>mspak</dc:creator>
      <dc:date>2015-09-16T11:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: ZIPCODE FOR EACH COUNTY and INTERPOLATION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/225836#M40583</link>
      <description>&lt;P&gt;Hi, here's some ZIP info (I'll leave the interpolation to someone else).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There's a SAS-supplied data set, SASHELP.ZIPCODE, that has info you can use to find ZIPs associated with counties. &amp;nbsp;Note, there are ZIPs that cross county boundaries and the ZIPCODE data set only lists one county per ZIP.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;proc sort data=sashelp.zipcode (keep=state county zip zip_class) out=new (drop=zip_class);&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;by state county;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;where missing(zip_class);&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;gives you a data set with STATE, COUNTY, and ZIP &amp;nbsp;(the WHERE statement eliminates PO BOXES and unique ZIPs that have no geography, as with a ZIP associated with a business).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you use this ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;proc freq data=new;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;tables state*county / noprint out=table;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;proc freq data=table;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;table count;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you'll see that about 75% of counties have 10 or fewer ZIPs. &amp;nbsp;However, 5% have 30+ ZIPs (the maximum is 289&amp;nbsp;ZIPs in a single county). &amp;nbsp;Not sure how you will use this data and that will determine how you would organize a lookup file. &amp;nbsp;One way would be to transpose the data ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;proc transpose data=new out=new ( drop=_: ) prefix=zip;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;var zip;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;by state county;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and you would have a data set with variables STATE, COUNTY, ZIP1-ZIP289. &amp;nbsp;There would be a lot of missing data among the ZIPs since only 25% of the STATE/COUNTY combinations have 10+ ZIPs, for example here's observation #1 ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;Obs STATE COUNTY zip1 &amp;nbsp;zip2 &amp;nbsp;zip3 zip4 &amp;nbsp;zip5 &amp;nbsp;zip6 &amp;nbsp;zip7 &amp;nbsp;zip8 zip9 zip10 &amp;lt;more&amp;gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;1 &amp;nbsp; &amp;nbsp;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1 36003 36006 36008 36051 36066 36067 36749 . &amp;nbsp; &amp;nbsp; . &amp;nbsp; &amp;nbsp; . &amp;nbsp; &amp;lt;more&amp;gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ZIP8 through ZIP289 are missing. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you try the folowing on the tranpsoed data set, you'll see the STAT/COUNTY with the 289 ZIPs ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;proc print data=new ;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;var state county zip1-zip10 zip289;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;where zip289 is not missing;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can do some reading ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ZIP Code 411: &amp;nbsp;A Well-Kept SAS® Secret&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www2.sas.com/proceedings/sugi31/143-31.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi31/143-31.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ZIP Code 411: Decoding SASHELP.ZIPCODE and Other SAS® Maps Online&amp;nbsp;Mysteries&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/resources/papers/proceedings10/219-2010.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings10/219-2010.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sascommunity.org/wiki/ZIP_Code_411:_Decoding_SASHELP.ZIPCODE_and_Other_SAS%C2%AE_Maps_Online_Mysteries" target="_blank"&gt;http://www.sascommunity.org/wiki/ZIP_Code_411:_Decoding_SASHELP.ZIPCODE_and_Other_SAS%C2%AE_Maps_Online_Mysteries&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2015 14:08:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/225836#M40583</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2015-09-16T14:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: ZIPCODE FOR EACH COUNTY and INTERPOLATION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/225837#M40584</link>
      <description>&lt;P&gt;For number 1, I am not sure what you have. &amp;nbsp;What are your observations? &amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it the lat/long of points? &amp;nbsp;Is it the state/county names? &amp;nbsp;Do you have a map of counties? Or something else?&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it is counties and you want the ZIP Code of the county, is there anything in your data that links the two?&lt;/P&gt;&lt;P&gt;You could use the SASHELP.ZIPCODE file to look up the name of the state and county. &amp;nbsp;But there are multiple ZIP Codes per county. &amp;nbsp;&lt;/P&gt;&lt;P&gt;Or if you don't have the name of the county, &amp;nbsp;you could use SAS/Graph and Proc GINSIDE, &amp;nbsp;If you have a map of counties (in the Library MAPSGFK) and then a point file of ZIP Codes (that is in SASHELP). &amp;nbsp;It will find the county that each point falls in. &amp;nbsp;But again, there are multiple ZIP Codes per county. &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I need to know what is in your data. &amp;nbsp;There are probably other ways.&lt;/P&gt;&lt;P&gt;Note, the ZIP Code changes over different months and years. &amp;nbsp;For example, one ZIP Code might become split and be 2 or 3.&lt;/P&gt;&lt;P&gt;If you are looking at historical records, a ZIP Code now may not have been there a year ago.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2015 14:09:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/225837#M40584</guid>
      <dc:creator>Darrell_sas</dc:creator>
      <dc:date>2015-09-16T14:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: ZIPCODE FOR EACH COUNTY and INTERPOLATION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/225842#M40585</link>
      <description>&lt;P&gt;MSPAK,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To follow up on Darrell's comment, SAS issues replacement copies of SASHELP.ZIPCODES periodically (one came out last week).&amp;nbsp; The USPS issues their ZIP Code revisions every 6 months.&amp;nbsp; I don't know the lag between the USPS posting theirs and the SAS distribution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mike's elimination of the zip_class records needs to be considered for your application.&amp;nbsp; A number of the single use ZIP codes actually have people living at them (college campuses).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You will also find that a few ZIP codes cross state lines, not just county lines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Doc Muhlbaier&lt;/P&gt;&lt;P&gt;Duke&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2015 14:26:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/225842#M40585</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2015-09-16T14:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: ZIPCODE FOR EACH COUNTY and INTERPOLATION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/225877#M40594</link>
      <description>&lt;P&gt;Hi. &amp;nbsp;There's good info in the new postings. &amp;nbsp;If you want to get a free copy of a cross-walk file for ZCTAs (not true ZIPs, but the US Census Zip Code Tabulation Areas) to county that will include multiple counties for ZCTAs that cross county boundaries, try ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://mcdc.missouri.edu/websas/geocorr12.html" target="_blank"&gt;http://mcdc.missouri.edu/websas/geocorr12.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I generated a CSV file (attached) for Delaware. &amp;nbsp;Delaware has 4 ZIPs that cross county boundaries: &amp;nbsp;19938, 19950, 19963, 19977. &amp;nbsp;I know that from another source ...&amp;nbsp;&lt;A href="http://www.melissadata.com/lookups/CountyZip.asp" target="_blank"&gt;http://www.melissadata.com/lookups/CountyZip.asp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The CSV file generated by the Missouri web site has two entries for each of those ZIPs, for example ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;"19977","10001","Kent DE","Smyrna, DE",18630,0.811 &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;"19977","10003","New Castle DE","Smyrna, DE",4354,0.189 &lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;shows that ZIP 19977 is in counties 1 and 3 (Delaware is FIPS state 10, so the fill county numbers are 10001 and 10003).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can generate a CSV file for all states just as easily as doing one. &amp;nbsp;You can get more info about ZCTAs vs ZIPs at ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ZIP Code Tabulation Areas (ZCTAs)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.census.gov/geo/reference/zctas.html" target="_blank"&gt;https://www.census.gov/geo/reference/zctas.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2015 16:15:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/225877#M40594</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2015-09-16T16:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: ZIPCODE FOR EACH COUNTY and INTERPOLATION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/225921#M40605</link>
      <description>&lt;P&gt;Hello MsPak, I have answered your interpolation question in your other thread at&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/Base-SAS-Programming/Linear-interpolation/m-p/225682#M40531" target="_blank"&gt;https://communities.sas.com/t5/Base-SAS-Programming/Linear-interpolation/m-p/225682#M40531&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but because of the recent changes to the Forums here, I'm not surprised you didn't see it because posts with replies that are many hours or days after the original post tend to get buried. (cc: &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/5"&gt;@LainieH﻿&lt;/a&gt; )&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2015 19:22:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/225921#M40605</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2015-09-16T19:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: ZIPCODE FOR EACH COUNTY and INTERPOLATION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/226017#M40632</link>
      <description>&lt;P&gt;Hi MikeZdeb,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the program. I manage to get a list of the zipcode from SASHELP. It is not a need to transpose the data. I will merge the SASHELP data with my dataset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MSPAK&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2015 11:13:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/226017#M40632</guid>
      <dc:creator>mspak</dc:creator>
      <dc:date>2015-09-17T11:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: ZIPCODE FOR EACH COUNTY and INTERPOLATION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/226018#M40633</link>
      <description>&lt;P&gt;Hi Darrell,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not have the lat/long points, but I have the FIPS code for each county and state.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MSPAK&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2015 11:15:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/226018#M40633</guid>
      <dc:creator>mspak</dc:creator>
      <dc:date>2015-09-17T11:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: ZIPCODE FOR EACH COUNTY and INTERPOLATION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/226019#M40634</link>
      <description>&lt;P&gt;Hi MikeZdeb,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the database. You are so resourceful!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MSPAK&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2015 11:18:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/226019#M40634</guid>
      <dc:creator>mspak</dc:creator>
      <dc:date>2015-09-17T11:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: ZIPCODE FOR EACH COUNTY and INTERPOLATION</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/226020#M40635</link>
      <description>&lt;P&gt;Hi PaigeMiller,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your program.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, I overlooked the messages due to the recent changes to this forum. In the past, I manage to view my own posts easily. Now, I need to spend time to find my own postings.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;MSPAK&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>Thu, 17 Sep 2015 11:37:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ZIPCODE-FOR-EACH-COUNTY-and-INTERPOLATION/m-p/226020#M40635</guid>
      <dc:creator>mspak</dc:creator>
      <dc:date>2015-09-17T11:37:18Z</dc:date>
    </item>
  </channel>
</rss>

