<?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 Editing Attribute Values in ArcMap Questions</title>
    <link>https://community.esri.com/t5/arcmap-questions/editing-attribute-values/m-p/1221047#M4064</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a parcel attribute table with a field containing addresses.&amp;nbsp; In several instances, it appears the street type designation has been left off.&amp;nbsp; For instance, "101 N Maple" should actually be "101 N Maple Avenue".&lt;/P&gt;&lt;P&gt;Is there a way, without having to go through each record in the attribute table, to add the word "Avenue" every time there is a "N Maple" occurrence?&lt;/P&gt;&lt;P&gt;Thank you in advance!&lt;/P&gt;&lt;P&gt;Jeff&lt;/P&gt;</description>
    <pubDate>Wed, 12 Oct 2022 11:07:26 GMT</pubDate>
    <dc:creator>JD1016</dc:creator>
    <dc:date>2022-10-12T11:07:26Z</dc:date>
    <item>
      <title>Editing Attribute Values</title>
      <link>https://community.esri.com/t5/arcmap-questions/editing-attribute-values/m-p/1221047#M4064</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a parcel attribute table with a field containing addresses.&amp;nbsp; In several instances, it appears the street type designation has been left off.&amp;nbsp; For instance, "101 N Maple" should actually be "101 N Maple Avenue".&lt;/P&gt;&lt;P&gt;Is there a way, without having to go through each record in the attribute table, to add the word "Avenue" every time there is a "N Maple" occurrence?&lt;/P&gt;&lt;P&gt;Thank you in advance!&lt;/P&gt;&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2022 11:07:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcmap-questions/editing-attribute-values/m-p/1221047#M4064</guid>
      <dc:creator>JD1016</dc:creator>
      <dc:date>2022-10-12T11:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: Editing Attribute Values</title>
      <link>https://community.esri.com/t5/arcmap-questions/editing-attribute-values/m-p/1221056#M4065</link>
      <description>&lt;P&gt;I can think of a Python way and a non-Python way.&amp;nbsp; Let's start with the non-Python one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would select by attribute all records that have "101 N Maple" in them.&amp;nbsp; Then, change your attribute view to only the selected features, and do a Field Calculator session on only your selected values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In field calculator, you can calculate a field using it's existing values.&amp;nbsp; So if your field name is something like&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;!Street!&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then your expression will be something like&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;!Street! + ' Avenue'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Notice I added a space before avenue in the string you are adding on, but that is dependent on if you have a space already in there or not.&lt;/P&gt;&lt;P&gt;Make sure you chose the Python and doublecheck your edits before you save everything to make sure it worked.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2022 13:05:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcmap-questions/editing-attribute-values/m-p/1221056#M4065</guid>
      <dc:creator>Kara_Shindle</dc:creator>
      <dc:date>2022-10-12T13:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Editing Attribute Values</title>
      <link>https://community.esri.com/t5/arcmap-questions/editing-attribute-values/m-p/1221060#M4066</link>
      <description>&lt;P&gt;Hi Kara,&lt;/P&gt;&lt;P&gt;Your code suggestion worked perfectly!&lt;/P&gt;&lt;P&gt;As a follow-up, is there a way to select all instances of the words "N Maple"?&amp;nbsp; Otherwise, I will have to manually select 101 N Maple, 102 N Maple, 103 N Maple,...you get the idea.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2022 12:39:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcmap-questions/editing-attribute-values/m-p/1221060#M4066</guid>
      <dc:creator>JD1016</dc:creator>
      <dc:date>2022-10-12T12:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: Editing Attribute Values</title>
      <link>https://community.esri.com/t5/arcmap-questions/editing-attribute-values/m-p/1221065#M4067</link>
      <description>&lt;P&gt;Yes, I would use your wildcard character and the LIKE operator to build a SQL Query.&amp;nbsp; In ArcMap, that is the percent sign or %&lt;/P&gt;&lt;P&gt;Here's an article to get you started.&amp;nbsp;&lt;A href="https://desktop.arcgis.com/en/arcmap/latest/map/working-with-layers/building-a-query-expression.htm#GUID-EC06FE3F-38BA-4CF2-AEAF-F69D65C7C567" target="_self"&gt;https://desktop.arcgis.com/en/arcmap/latest/map/working-with-layers/building-a-query-expression.htm#GUID-EC06FE3F-38BA-4CF2-AEAF-F69D65C7C567&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm searching for all rows that in my street address field that have the word Church in them.&amp;nbsp; I put the wildcard before AND after church, because I know it has street numbers and road types on either side of the road name I'm looking for.&lt;/P&gt;&lt;LI-CODE lang="sql"&gt;SITUSAddress1 LIKE '%CHURCH%'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2022 12:53:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcmap-questions/editing-attribute-values/m-p/1221065#M4067</guid>
      <dc:creator>Kara_Shindle</dc:creator>
      <dc:date>2022-10-12T12:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Editing Attribute Values</title>
      <link>https://community.esri.com/t5/arcmap-questions/editing-attribute-values/m-p/1221066#M4068</link>
      <description>&lt;P&gt;PERFECT!&lt;/P&gt;&lt;P&gt;I had employed the use of the LIKE operator with the percent sign before but I had the percent "only" at the end of the code and therefore it would look for those beginning with that instead of ending.&amp;nbsp; In adding the other %, everything was selected regardless of position.&lt;/P&gt;&lt;P&gt;Thank you, Kara!&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2022 12:57:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcmap-questions/editing-attribute-values/m-p/1221066#M4068</guid>
      <dc:creator>JD1016</dc:creator>
      <dc:date>2022-10-12T12:57:52Z</dc:date>
    </item>
  </channel>
</rss>

