<?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: Newbie question on Near Me output data in ArcGIS Experience Builder Questions</title>
    <link>https://community.esri.com/t5/arcgis-experience-builder-questions/newbie-question-on-near-me-output-data/m-p/1636131#M20136</link>
    <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/130244"&gt;@TerrySteege&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think you're on the right track with the not being able to multiply due to it being text. Typically to perform math operations, they need to be integers, if you're using Arcade, you may be able to convert it to an integer like this:&lt;/P&gt;&lt;P&gt;Number("string value")&lt;/P&gt;&lt;P&gt;This would convert it to an integer for the purposes of math, you could assign it to a variable to be used as well!&lt;/P&gt;&lt;P&gt;Cody&lt;/P&gt;</description>
    <pubDate>Thu, 24 Jul 2025 19:59:22 GMT</pubDate>
    <dc:creator>CodyPatterson</dc:creator>
    <dc:date>2025-07-24T19:59:22Z</dc:date>
    <item>
      <title>Newbie question on Near Me output data</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/newbie-question-on-near-me-output-data/m-p/1636109#M20129</link>
      <description>&lt;P&gt;I am just learning how to use this product and I am having an issue with the Near Me widget's output.&lt;/P&gt;&lt;P&gt;I have a basic project with a map widget, and linked to some data I would like to calculate from.&amp;nbsp; I am able to click a spot on the map and have the Near Me widget show the closest asset I have to that location.&amp;nbsp; It shows the data and the Approximate Distance from where I clicked to that asset.&amp;nbsp; I can then get the distance to populate in a text widget, but when I try to do an expression to multiply that value by say $10 it does not show up.&amp;nbsp; I assume it is because the output is not numeric due to the "ft" label on the back of the data.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know how I can achieve this type of functionality?&lt;/P&gt;&lt;P&gt;Thank you in advance with any ideas.&lt;/P&gt;&lt;P&gt;Terry S&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2025 19:23:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/newbie-question-on-near-me-output-data/m-p/1636109#M20129</guid>
      <dc:creator>TerrySteege</dc:creator>
      <dc:date>2025-07-24T19:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie question on Near Me output data</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/newbie-question-on-near-me-output-data/m-p/1636131#M20136</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/130244"&gt;@TerrySteege&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think you're on the right track with the not being able to multiply due to it being text. Typically to perform math operations, they need to be integers, if you're using Arcade, you may be able to convert it to an integer like this:&lt;/P&gt;&lt;P&gt;Number("string value")&lt;/P&gt;&lt;P&gt;This would convert it to an integer for the purposes of math, you could assign it to a variable to be used as well!&lt;/P&gt;&lt;P&gt;Cody&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2025 19:59:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/newbie-question-on-near-me-output-data/m-p/1636131#M20136</guid>
      <dc:creator>CodyPatterson</dc:creator>
      <dc:date>2025-07-24T19:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie question on Near Me output data</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/newbie-question-on-near-me-output-data/m-p/1636150#M20140</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/130244"&gt;@TerrySteege&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;The issue is the distance includes “ft,” so it's treated as a string. You’ll need to extract the number first before multiplying.&lt;/P&gt;&lt;P&gt;If you're using Experience Builder, try an expression that splits the string and converts it to a number. Something like:&lt;/P&gt;&lt;LI-CODE lang="markdown"&gt;var d = Split($feature["Approximate Distance"], " ")[0];
return Number(d) * 10;&lt;/LI-CODE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2025 20:32:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/newbie-question-on-near-me-output-data/m-p/1636150#M20140</guid>
      <dc:creator>VenkataKondepati</dc:creator>
      <dc:date>2025-07-24T20:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie question on Near Me output data</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/newbie-question-on-near-me-output-data/m-p/1636163#M20143</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/130244"&gt;@TerrySteege&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Approximate distance is string, I will log an enhancement request to change it to numeric. In the mean time you can use arcade expression to&amp;nbsp; extract and calculate math operation as Venkata suggested.&lt;/P&gt;&lt;P&gt;Thanks for reporting this.&lt;/P&gt;&lt;P&gt;Aziza&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2025 20:48:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/newbie-question-on-near-me-output-data/m-p/1636163#M20143</guid>
      <dc:creator>AzizaParveen1</dc:creator>
      <dc:date>2025-07-24T20:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie question on Near Me output data</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/newbie-question-on-near-me-output-data/m-p/1639293#M20306</link>
      <description>&lt;P&gt;That will be awesome, thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2025 16:56:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/newbie-question-on-near-me-output-data/m-p/1639293#M20306</guid>
      <dc:creator>TerrySteege</dc:creator>
      <dc:date>2025-08-05T16:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie question on Near Me output data</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/newbie-question-on-near-me-output-data/m-p/1639396#M20314</link>
      <description>&lt;P&gt;Did you have to turn on a setting to see Arcade as an option in Exp Builder?&amp;nbsp; I do not have the ability in my EB to add Arcade expressions for some reason.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2025 19:54:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/newbie-question-on-near-me-output-data/m-p/1639396#M20314</guid>
      <dc:creator>TerrySteege</dc:creator>
      <dc:date>2025-08-05T19:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie question on Near Me output data</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/newbie-question-on-near-me-output-data/m-p/1648675#M20727</link>
      <description>&lt;P&gt;Well, it ended up being a version issue.&amp;nbsp; I deleted my install and reinstalled ExperienceBuilder and magically Arcade is now an option I can use.&amp;nbsp; Thank you to everyone who helped me and the math portion of my script works great now!&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 17:39:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/newbie-question-on-near-me-output-data/m-p/1648675#M20727</guid>
      <dc:creator>TerrySteege</dc:creator>
      <dc:date>2025-09-08T17:39:39Z</dc:date>
    </item>
  </channel>
</rss>

