<?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: Standardize addresses tool in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/standardize-addresses-tool/m-p/199519#M11406</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Personally I'd import the spreadsheet into a geodatabase table; that's where I prefer to work.&amp;nbsp; It looks like your street field has a comma between the actual address and the bldg/apt reference.&amp;nbsp; With the split() function in VB you can put the bldg/apt reference into it's own field and the actual address in its own field.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Add two fields, both text.&amp;nbsp; Call one TheAddress and the other TheAptBldg&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Calculate TheAddress:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;dim list&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dim addr&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;list = split([STREET],","]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;addr = list (0)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Calculate TheAptBldg&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;dim list&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dim aptbldg&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;list = split([STREET],","]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;aptbldg = list (1)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Untested.&amp;nbsp; Your mileage may vary...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also; you might want to look into cleaning up your data:&amp;nbsp; I go with all caps, and NO punctuation so St. becomes ST etc etc.&amp;nbsp; Use USPS street type standards.&amp;nbsp; Don't re-invent the wheel.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Dec 2013 17:25:49 GMT</pubDate>
    <dc:creator>JoeBorgione</dc:creator>
    <dc:date>2013-12-02T17:25:49Z</dc:date>
    <item>
      <title>Standardize addresses tool</title>
      <link>https://community.esri.com/t5/data-management-questions/standardize-addresses-tool/m-p/199517#M11404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm just wondering how I can parse an apartment/building number out of an address.&amp;nbsp; I have an excel sheet that has 1100+ addresses, and about half of them are in the "123 Hwy 24, #456" format.&amp;nbsp; In this format they are not able to be standardized.&amp;nbsp; I've tried changing the # sign to Apt, Bldg, and various other things.&amp;nbsp; Changing the format to "123 Apt 456 Hwy 123" doesn't work either, and I'm not sure how I would make that change to all 500+ fields (i.e. find and replace wouldn't work).&amp;nbsp; This is the first post I've created.&amp;nbsp; I hope I'm following protocol/etiquette, apologies if I've forgotten something.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]29159[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Nov 2013 21:02:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/standardize-addresses-tool/m-p/199517#M11404</guid>
      <dc:creator>KennethEggering</dc:creator>
      <dc:date>2013-11-17T21:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: Standardize addresses tool</title>
      <link>https://community.esri.com/t5/data-management-questions/standardize-addresses-tool/m-p/199518#M11405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You may want to check out the thread: &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/26362-Locator-Style-for-Apt-or-Units"&gt;http://forums.arcgis.com/threads/26362-Locator-Style-for-Apt-or-Units&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It sounds like that is what you are looking for.&amp;nbsp; There are two "versions" of such a locator style.&amp;nbsp; One has a field added to deal with fractional addresses.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;EDIT:&amp;nbsp; Taking another look at the included screen shot you provided, the above-mentioned locator style likely will not work directly against your existing data.&amp;nbsp; You may want to extract those records that do not have their individual components separated out into the individual fields and attempt to do a batch address match on the Street field.&amp;nbsp; Either that or just use the entire table--those without unit info should match properly.&amp;nbsp; You would need to build a locator using the style above so that the batch geocode process will recognize and "slice-and-dice" your address into the proper pieces.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You would need to create a new feature class that includes the extra fields to hold the building/unit attributes and load the address match result into it, or simply use the batch match result 'as-is'.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am likely leaving out some details but hopefully you can follow the thought process.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Nov 2013 21:35:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/standardize-addresses-tool/m-p/199518#M11405</guid>
      <dc:creator>BrianOevermann</dc:creator>
      <dc:date>2013-11-27T21:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: Standardize addresses tool</title>
      <link>https://community.esri.com/t5/data-management-questions/standardize-addresses-tool/m-p/199519#M11406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Personally I'd import the spreadsheet into a geodatabase table; that's where I prefer to work.&amp;nbsp; It looks like your street field has a comma between the actual address and the bldg/apt reference.&amp;nbsp; With the split() function in VB you can put the bldg/apt reference into it's own field and the actual address in its own field.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Add two fields, both text.&amp;nbsp; Call one TheAddress and the other TheAptBldg&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Calculate TheAddress:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;dim list&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dim addr&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;list = split([STREET],","]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;addr = list (0)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Calculate TheAptBldg&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;dim list&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dim aptbldg&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;list = split([STREET],","]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;aptbldg = list (1)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Untested.&amp;nbsp; Your mileage may vary...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also; you might want to look into cleaning up your data:&amp;nbsp; I go with all caps, and NO punctuation so St. becomes ST etc etc.&amp;nbsp; Use USPS street type standards.&amp;nbsp; Don't re-invent the wheel.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Dec 2013 17:25:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/standardize-addresses-tool/m-p/199519#M11406</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2013-12-02T17:25:49Z</dc:date>
    </item>
  </channel>
</rss>

