<?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: How do I check an Arcade variable to see if it is numeric? in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527070#M23215</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. &amp;nbsp;It seems funny you say this, because I read this right after trying to find a way to use this arcade code in ArcGIS Desktop. &amp;nbsp;And there appears to be no way. &amp;nbsp;But if had been written in javascript I could have ported it over. &amp;nbsp;They seem to be already abandoning that platform, without having the Pro platform ready for "primetime."&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Mar 2018 14:57:30 GMT</pubDate>
    <dc:creator>Syvertson</dc:creator>
    <dc:date>2018-03-02T14:57:30Z</dc:date>
    <item>
      <title>How do I check an Arcade variable to see if it is numeric?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527064#M23209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am working on a complex label in ArcGIS Pro, and trying to learn arcade in the process. &amp;nbsp;The process breaks aparttwo address fields&amp;nbsp;and extracts the first part so I can use this as the "House Number." &amp;nbsp; Then I make a label using the two "house numbers." &amp;nbsp;In some cases, they put something other than a standard address in the&amp;nbsp;field, so after parsing, a few would give me a word instead of a number. In other programing languages the "IsNumeric" (or similar) function will give me a boolean result so then I can test it. &amp;nbsp;How do I do that in Arcade? &amp;nbsp;I want all non-numeric to be converted to an empty string. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will post the code here, but please be kind because I am no professional coder by any stretch of the imagination, especially not in Arcade.&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;var x = $feature['RC_GIS.dbo.ALL_PARCEL_DATA.Street_Address'];&lt;BR /&gt;var y = $feature['RC_GIS.dbo.ALL_PARCEL_DATA.paddress2'];&lt;BR /&gt;var x1 = split(x,' ')[0];&lt;BR /&gt;var y1 = split(y,' ')[0];&lt;BR /&gt;var label;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;if(x1 == '0')&lt;BR /&gt;{x1 = '';}&lt;/P&gt;&lt;P&gt;if(y1 == '0')&lt;BR /&gt;{y1 == '';}&lt;/P&gt;&lt;P&gt;if (x1 == y1) &lt;BR /&gt;{&lt;BR /&gt; label = x1;&lt;BR /&gt;} &lt;BR /&gt;else &lt;BR /&gt;{ &lt;BR /&gt; if (x1 == '') &lt;BR /&gt; {&lt;BR /&gt; label = y1;&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; if (y1 == '')&lt;BR /&gt; {&lt;BR /&gt; label = x1;&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; label = concatenate([x1,y1],"-");&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;return label;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Thanks in advance for any advise you might have.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 23:03:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527064#M23209</guid>
      <dc:creator>Syvertson</dc:creator>
      <dc:date>2018-02-23T23:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: How do I check an Arcade variable to see if it is numeric?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527065#M23210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;typeof?&amp;nbsp;&lt;A href="https://developers.arcgis.com/arcade/function-reference/data_functions/#typeof"&gt;https://developers.arcgis.com/arcade/function-reference/data_functions/#typeof&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 23:18:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527065#M23210</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-02-23T23:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: How do I check an Arcade variable to see if it is numeric?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527066#M23211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think I may have asked the problem wrong, because what you gave me is a very good answer for what I asked, but not what I needed. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My first step parses the addresses into an array of the "words" in the string. &amp;nbsp;I take the first item in the array and assign it to a "house number" variable (x1). &amp;nbsp;(of course it is still a string, but hopefully a numeric string) &amp;nbsp;I tried using &lt;EM&gt;&lt;STRONG&gt;if(typeof(x1) == 'String')&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;to test for non-numeric and replace with an empty string, and it actually eliminated all the results. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My next idea was to use &lt;EM&gt;&lt;STRONG&gt;Numeric(x1)&lt;/STRONG&gt;&lt;/EM&gt;, which did actually convert all of the appropriate numeric responses to a number, but the non-numeric ones have a "NaN" value for "not a number." &amp;nbsp;Since I don't want NaN on the label, andI need to find a way to test for "NaN" and replace with the empty string. &amp;nbsp;So far I have not found that one test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Latest version of this code:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;var x = $feature['RC_GIS.dbo.ALL_PARCEL_DATA.Street_Address'];&lt;BR /&gt;var y = $feature['RC_GIS.dbo.ALL_PARCEL_DATA.paddress2'];&lt;BR /&gt;var x1 = Number(split(x,' ')[0]);&lt;BR /&gt;var y1 = Number(split(y,' ')[0]);&lt;BR /&gt;var label;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;if(ABS(x1) == 0)&lt;BR /&gt;&amp;nbsp; &amp;nbsp;{x1 = NULL;}&lt;/P&gt;&lt;P&gt;if(ABS(y1) == 0)&lt;BR /&gt;&amp;nbsp; &amp;nbsp;{y1 = NULL;}&lt;/P&gt;&lt;P&gt;if (x1 == y1) &lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; &amp;nbsp;label = x1;&lt;BR /&gt;} &lt;BR /&gt;else &lt;BR /&gt;{ &lt;BR /&gt;&amp;nbsp; &amp;nbsp;if (x1 == NULL) &lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;label = y1;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp;else&lt;BR /&gt;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if (y1 == NULL)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;label = x1;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; else&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;label = concatenate([x1,y1],"-");&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;return label;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result is below: &amp;nbsp;Everything looks fine, except the "NaN".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/397455_pastedImage_3.png" style="width: 993px; height: 522px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2018 16:15:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527066#M23211</guid>
      <dc:creator>Syvertson</dc:creator>
      <dc:date>2018-02-26T16:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do I check an Arcade variable to see if it is numeric?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527067#M23212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved this! &amp;nbsp;Just so others know if the have same problem, I had to change back to text, and at that point the NaN became a string 'NaN' that I could test for. &amp;nbsp;See below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var x1 = Number(split(x,' ')[0]);&lt;BR /&gt;var y1 = Number(split(y,' ')[0]);&lt;/P&gt;&lt;P&gt;x1 = Text(x1);&lt;BR /&gt;if(x1 == '0' || x1 == 'NaN')&lt;BR /&gt;{x1 = NULL;}&lt;/P&gt;&lt;P&gt;y1 = Text(y1);&lt;BR /&gt;if(y1 == '0' || y1 == 'NaN')&lt;BR /&gt;{y1 = NULL;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2018 16:54:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527067#M23212</guid>
      <dc:creator>Syvertson</dc:creator>
      <dc:date>2018-02-26T16:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do I check an Arcade variable to see if it is numeric?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527068#M23213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now that this is solved and I have learned a little bit about "Arcade" and how to use it in labeling, I need to ask the follow on question. &amp;nbsp;What are the reasons someone should use Arcade rather than VB Script, Javascript or Python? &amp;nbsp;There must have been a gap that needed to be filled in order for this newer language to be applied here...????&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2018 17:09:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527068#M23213</guid>
      <dc:creator>Syvertson</dc:creator>
      <dc:date>2018-02-26T17:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: How do I check an Arcade variable to see if it is numeric?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527069#M23214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Arcade works across the ArcGIS platform.&amp;nbsp; So if you're using it in a labeling expression or to control rendering (or in popups, etc. etc.) whatever you see in ArcGIS Pro will be rendered and displayed the same through services in a web browser or app.&amp;nbsp; That's the underlying idea.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Mar 2018 23:32:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527069#M23214</guid>
      <dc:creator>KoryKramer</dc:creator>
      <dc:date>2018-03-01T23:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: How do I check an Arcade variable to see if it is numeric?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527070#M23215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. &amp;nbsp;It seems funny you say this, because I read this right after trying to find a way to use this arcade code in ArcGIS Desktop. &amp;nbsp;And there appears to be no way. &amp;nbsp;But if had been written in javascript I could have ported it over. &amp;nbsp;They seem to be already abandoning that platform, without having the Pro platform ready for "primetime."&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2018 14:57:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527070#M23215</guid>
      <dc:creator>Syvertson</dc:creator>
      <dc:date>2018-03-02T14:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I check an Arcade variable to see if it is numeric?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527071#M23216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Arcade page&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/arcade/" title="https://developers.arcgis.com/arcade/"&gt;ArcGIS Arcade | ArcGIS for Developers&lt;/A&gt;&amp;nbsp; mentions this text, like &lt;A href="https://community.esri.com/migrated-users/45316"&gt;Kory Kramer&lt;/A&gt;&amp;nbsp;already mentioned:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P style="color: #4c4c4c; background-color: #ffffff; margin-bottom: 1.55rem;"&gt;&lt;EM&gt;Arcade is an expression language that can be used across the ArcGIS Platform. Whether writing simple scripts to control how features are rendered, or expressions to control label text, Arcade provides a simple scripting syntax to deliver these capabilities.&lt;/EM&gt;&lt;/P&gt;&lt;P style="color: #4c4c4c; background-color: #ffffff; margin-bottom: 1.55rem;"&gt;&lt;EM&gt;Arcade scripts are portable. This means that scripts you author in ArcGIS Pro can be read and executed in a WebMap through a browser, or in a Mobile Application&lt;/EM&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Every change can be difficult, and with the Web GIS pattern there is the need to adapt the platform to enable it to grow and expand its capabilities. None of the existing scripting languages was able to grow like that. In the mean time we will be in a transition phase where Arcade will grow and will be able to do more each time and where other scripting languages would not be able to grow at the same rate due to restrictions they have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The same is happening with&amp;nbsp;Desktop. Many innovations will not be implemented in ArcMap and will only be available in ArcGIS Pro, because ArcGIS Pro is the feature. A huge example is the Utility Network Management extension. The capabilities are not available in ArcMap, but they are in Web,&amp;nbsp;Pro and mobile.&amp;nbsp;A new feature introduced are&amp;nbsp;the new attribute rules. Those will be configured using Arcade expressions. Many enhancements will come to Arcade and Arcade serves a different purpose then for instance Python. Give it some time and i will prove its benefits over other language.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2018 18:32:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527071#M23216</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2018-03-02T18:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: How do I check an Arcade variable to see if it is numeric?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527072#M23217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thoughtful response, Xander!&amp;nbsp; &lt;A href="https://community.esri.com/migrated-users/3585"&gt;Matthew Syvertson&lt;/A&gt;&amp;nbsp; &amp;nbsp;In a nutshell, the transition from ArcMap to ArcGIS Pro is a dial, not a switch.&amp;nbsp; While ArcMap will continue to be supported for many years, new functionality is being developed in ArcGIS Pro.&amp;nbsp; Arcade is new functionality.&amp;nbsp; Depending on specific workflows, some customers will be on the ArcMap side of the dial longer than other customers.&amp;nbsp; Some may be at level 5 (of 10), doing certain things in ArcMap and carrying out different, complete workflows using ArcGIS Pro.&amp;nbsp; And then there are others who are already clamoring for the dial to go to 11, or 12... &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2018 19:09:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527072#M23217</guid>
      <dc:creator>KoryKramer</dc:creator>
      <dc:date>2018-03-02T19:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do I check an Arcade variable to see if it is numeric?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527073#M23218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I understand all that, but there is KEY functionality that is left out that I keep running into. &amp;nbsp;For instance. &amp;nbsp;The attribute assistant. &amp;nbsp;It worked fantastic in ArcGIS Desktop. &amp;nbsp;Now I have to figure out how to use the new Attribute Rules (which has only a limited subset of capabilities) and when I attempt to make some of the simple rules, it errors. See the screenshot below:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/398010_pastedImage_1.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Notice that the green "expression is valid" displays after I validate. &amp;nbsp;But also notice the red failure notification. &amp;nbsp;The reason for the failure is an invalid expression. &amp;nbsp;HUH?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oh, and also if I add these rules to a feature class they become no longer usable in ArcGIS Desktop. &amp;nbsp;That is just nuts... &amp;nbsp;Why not find a way for "Arcade" to use the dynamic value table that was already created in our databases since they are building the language???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I keep trying to make Pro work, but keep running into road blocks. &amp;nbsp;And I am a very computer savvy person, I can't imagine being the casual GIS user and having to try to navigate these obstacles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2018 19:40:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527073#M23218</guid>
      <dc:creator>Syvertson</dc:creator>
      <dc:date>2018-03-02T19:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do I check an Arcade variable to see if it is numeric?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527074#M23219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm sorry to hear that you run into problems using the attribute rules. This is the first version in which attribute rules are available and as you pointed out it is currently not capable of replacing all the functionality the attribute assistent is offering for ArcMap. However, in coming versions more and more functionality will be included and it will eventually go further than what the attribute assistent if capable of doing. I would advice you to log the problems you encounter with Esri support, to make sure those get resolved.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Mar 2018 02:58:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527074#M23219</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2018-03-04T02:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: How do I check an Arcade variable to see if it is numeric?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527075#M23220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you sure the:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Timestamp()&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function returns the appropriate data type for the field you are trying to calculate? I can imagine a situation where the actual syntax of the expression is valid, but the returned data type not, and maybe causing issues when adding or truly executing the attribute rule. E.g. if your field to calculate is of type &lt;STRONG&gt;text&lt;/STRONG&gt; instead of &lt;STRONG&gt;date&lt;/STRONG&gt;, it might cause an issue. &lt;STRONG&gt;Timestamp()&lt;/STRONG&gt; returns a true &lt;STRONG&gt;date&lt;/STRONG&gt; (&lt;A class="link-titled" href="https://developers.arcgis.com/arcade/function-reference/date_functions/#timestamp" title="https://developers.arcgis.com/arcade/function-reference/date_functions/#timestamp"&gt;Date Functions | ArcGIS for Developers&lt;/A&gt; )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is just a wild guess though, I don't have experience with the new attribute rules functionality.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Mar 2018 10:46:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527075#M23220</guid>
      <dc:creator>MarcoBoeringa</dc:creator>
      <dc:date>2018-03-04T10:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: How do I check an Arcade variable to see if it is numeric?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527076#M23221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a related thread here:&amp;nbsp;&lt;A href="https://community.esri.com/thread/210611"&gt;Can an arcade attribute rule update a date field?&lt;/A&gt;&amp;nbsp; My guess is that&amp;nbsp;some functionality related to dates and attribute rules may need some adjustments.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Mar 2018 15:09:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527076#M23221</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2018-03-04T15:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do I check an Arcade variable to see if it is numeric?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527077#M23222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Marco. &amp;nbsp;I did attempt "Text(Timestamp())" as well. &amp;nbsp;Here is the attribute information:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/398097_pastedImage_1.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2018 14:59:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527077#M23222</guid>
      <dc:creator>Syvertson</dc:creator>
      <dc:date>2018-03-05T14:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: How do I check an Arcade variable to see if it is numeric?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527078#M23223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK. &amp;nbsp;Thanks again Xander. &amp;nbsp;And that makes the point I am making, that Key functionality is missing. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When every workflow I attempt to replicate in Pro ends up in disappointment over "not quite ready" technology, it is frustrating&amp;nbsp;-- Especially when all I hear is that it is time&amp;nbsp;we should be migrating that way. &amp;nbsp;I wouldn't be frustrated if I just ignored and stayed on ArcMap, but I am usually an early adopter of technology. &amp;nbsp;I keep making these attempts and investing time into a project and then find out I need to just go back for now. &amp;nbsp;I really do want this to work out, because the things that do work are really cool.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2018 15:04:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527078#M23223</guid>
      <dc:creator>Syvertson</dc:creator>
      <dc:date>2018-03-05T15:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do I check an Arcade variable to see if it is numeric?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527079#M23224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Matthew, I apologize that you're experiencing issues in starting to work with attribute rules.&amp;nbsp; It looks like this specific issue that you've noted has been logged in our technical support system as&amp;nbsp;&lt;EM style="background-color: #ffffff; border: 0px;"&gt;BUG-000112098 -&amp;nbsp;ERROR 000358: Invalid expression when applying an Arcade date function to a date field thru Attribute Rules&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are interested in being attached to the bug, please open a case with support and request to be attached.&amp;nbsp;&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>Mon, 05 Mar 2018 15:06:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-check-an-arcade-variable-to-see-if-it-is/m-p/527079#M23224</guid>
      <dc:creator>KoryKramer</dc:creator>
      <dc:date>2018-03-05T15:06:13Z</dc:date>
    </item>
  </channel>
</rss>

