<?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: WHAT I HAVE PROBLEM WITH THIS EXPRESSION in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/what-i-have-problem-with-this-expression/m-p/674036#M29838</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok ok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jan 2020 00:13:03 GMT</pubDate>
    <dc:creator>ArmandoFreites</dc:creator>
    <dc:date>2020-01-15T00:13:03Z</dc:date>
    <item>
      <title>WHAT I HAVE PROBLEM WITH THIS EXPRESSION</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/what-i-have-problem-with-this-expression/m-p/674031#M29833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/478083_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;I NEED PUT THE COORDINATE AND THE WORD : NOMBRE, LIKE: 57485.258 NOMBRE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Jan 2020 19:38:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/what-i-have-problem-with-this-expression/m-p/674031#M29833</guid>
      <dc:creator>ArmandoFreites</dc:creator>
      <dc:date>2020-01-11T19:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: WHAT I HAVE PROBLEM WITH THIS EXPRESSION</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/what-i-have-problem-with-this-expression/m-p/674032#M29834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;POINT_X and POINT_Y are both numeric type fields.&amp;nbsp; You will need to add two new fields of String type in order to concatenate the word NOMBRE to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add two new string type field, naming them as you wish.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in the field calculator you can copy and paste the following for each of the new fields:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;str&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;!POINT_X!&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;' '&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'NOMBRE'&lt;/SPAN&gt;

str&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;!POINT_Y!&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;' '&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'NOMBRE'&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This casts the value of each variable to a string and then puts a space between the value and NOMBRE.&amp;nbsp; You may need to set the format of the POINT_X and POINT_Y fields to the number of decimal places you want to display.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:26:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/what-i-have-problem-with-this-expression/m-p/674032#M29834</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2021-12-12T04:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: WHAT I HAVE PROBLEM WITH THIS EXPRESSION</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/what-i-have-problem-with-this-expression/m-p/674033#M29835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To avoid whether you need cast things to strings, learn the python "format" mini-language.&amp;nbsp; It can all be done on 1 line and is even more powerful than its sibling the f-string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"{}&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt; &lt;SPAN class="string token"&gt;"{} {}"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'a string'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;  &lt;SPAN class="comment token"&gt;# ---- implicit order&lt;/SPAN&gt;
&lt;SPAN class="string token"&gt;'a string 1'&lt;/SPAN&gt;

&lt;SPAN class="string token"&gt;"{1} {0}"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'a string'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;# ---- explicit order &lt;/SPAN&gt;
&lt;SPAN class="string token"&gt;'1 a string'&lt;/SPAN&gt;

&lt;SPAN class="string token"&gt;"{}{}{}"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'stuff'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;" in between "&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;3&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'a, b'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2.0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;  &lt;SPAN class="comment token"&gt;# ---- it can do anything&lt;/SPAN&gt;
&lt;SPAN class="string token"&gt;"stuff in between  in between  in between ['a, b', 1, 2.0]"&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:26:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/what-i-have-problem-with-this-expression/m-p/674033#M29835</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-12T04:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: WHAT I HAVE PROBLEM WITH THIS EXPRESSION</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/what-i-have-problem-with-this-expression/m-p/674034#M29836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very good, it´s working. Thanks&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jan 2020 15:31:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/what-i-have-problem-with-this-expression/m-p/674034#M29836</guid>
      <dc:creator>ArmandoFreites</dc:creator>
      <dc:date>2020-01-14T15:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: WHAT I HAVE PROBLEM WITH THIS EXPRESSION</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/what-i-have-problem-with-this-expression/m-p/674035#M29837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/190153"&gt;Armando Freites&lt;/A&gt;‌, please mark one of the responses as Correct to close out your question.&amp;nbsp; If multiple people gave you good answers, pick the one that helped the most and mark it correct while marking the others as helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jan 2020 17:20:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/what-i-have-problem-with-this-expression/m-p/674035#M29837</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2020-01-14T17:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: WHAT I HAVE PROBLEM WITH THIS EXPRESSION</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/what-i-have-problem-with-this-expression/m-p/674036#M29838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok ok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jan 2020 00:13:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/what-i-have-problem-with-this-expression/m-p/674036#M29838</guid>
      <dc:creator>ArmandoFreites</dc:creator>
      <dc:date>2020-01-15T00:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: WHAT I HAVE PROBLEM WITH THIS EXPRESSION</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/what-i-have-problem-with-this-expression/m-p/674037#M29839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your fast and effective answer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2020 06:44:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/what-i-have-problem-with-this-expression/m-p/674037#M29839</guid>
      <dc:creator>ArmandoFreites</dc:creator>
      <dc:date>2020-01-17T06:44:17Z</dc:date>
    </item>
  </channel>
</rss>

