<?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: Get county when doing a proc geocode street level with status = 'Zip match' in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Get-county-when-doing-a-proc-geocode-street-level-with-status/m-p/198148#M49509</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ballardw,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sorry about that.&amp;nbsp; This was about SAS 9.4 the other was with 9.3.&amp;nbsp; I have to use latitude and longitude to get the it to work.&amp;nbsp; I used this information to get the county fips code where it was missing from the geocode process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#a003166866.htm" title="https://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#a003166866.htm"&gt;SAS/GRAPH(R) 9.2: Reference, Second Edition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Jun 2015 12:57:46 GMT</pubDate>
    <dc:creator>jerry898969</dc:creator>
    <dc:date>2015-06-03T12:57:46Z</dc:date>
    <item>
      <title>Get county when doing a proc geocode street level with status = 'Zip match'</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Get-county-when-doing-a-proc-geocode-street-level-with-status/m-p/198146#M49507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to get a fips county code back when the _status_ is equal to 'Zip match'.&amp;nbsp; Currently it returns a missing value for those rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possible to do with SAS 9.4 64-bit (TS1M2)? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_14332663898548923" jivemacro_uid="_14332663898548923" modifiedtitle="true"&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;proc geocode&lt;/P&gt;
&lt;P&gt;method = street&lt;/P&gt;
&lt;P&gt;addressvar = R_ADDR&lt;/P&gt;
&lt;P&gt;addresscityvar = R_CITY&lt;/P&gt;
&lt;P&gt;addressstatevar = R_ST&lt;/P&gt;
&lt;P&gt;addresszipvar = R_ZIP&lt;/P&gt;
&lt;P&gt;data = address&lt;/P&gt;
&lt;P&gt;out = address_out&lt;/P&gt;
&lt;P&gt;attribute_var = (COUNTYFP, TRACT, BLKGRP, BLOCK)&lt;/P&gt;
&lt;P&gt;FIPS=SASHELP.PLFIPS&lt;/P&gt;
&lt;P&gt;lookupstreet = geodata.USM&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;run ;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for any help you can give me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 17:34:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Get-county-when-doing-a-proc-geocode-street-level-with-status/m-p/198146#M49507</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2015-06-02T17:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Get county when doing a proc geocode street level with status = 'Zip match'</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Get-county-when-doing-a-proc-geocode-street-level-with-status/m-p/198147#M49508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This looks an awful lot like the previous question: &lt;A _jive_internal="true" href="https://communities.sas.com/message/274254#274254"&gt;https://communities.sas.com/message/274254#274254&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does the geodata.usm dataset have a county FIPS code for every Zipcode?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not you could merge the one from the SASHELP.ZIPCODE data set.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 19:39:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Get-county-when-doing-a-proc-geocode-street-level-with-status/m-p/198147#M49508</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-06-02T19:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: Get county when doing a proc geocode street level with status = 'Zip match'</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Get-county-when-doing-a-proc-geocode-street-level-with-status/m-p/198148#M49509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ballardw,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sorry about that.&amp;nbsp; This was about SAS 9.4 the other was with 9.3.&amp;nbsp; I have to use latitude and longitude to get the it to work.&amp;nbsp; I used this information to get the county fips code where it was missing from the geocode process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#a003166866.htm" title="https://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#a003166866.htm"&gt;SAS/GRAPH(R) 9.2: Reference, Second Edition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 12:57:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Get-county-when-doing-a-proc-geocode-street-level-with-status/m-p/198148#M49509</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2015-06-03T12:57:46Z</dc:date>
    </item>
  </channel>
</rss>

