<?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: Converting VBScript to Arcade in Developers Questions</title>
    <link>https://community.esri.com/t5/developers-questions/converting-vbscript-to-arcade/m-p/1303135#M6658</link>
    <description>&lt;P&gt;As stated above Round is pretty straight forward, just have to access the attribute from the features with something like: Round($feature.UTC_Pct,0). To get the "%" at the end use the Concatenate function.&lt;BR /&gt;&lt;BR /&gt;ex. Concatenate(Round($feature.UTC_Pct,0),"%")&lt;/P&gt;</description>
    <pubDate>Mon, 26 Jun 2023 19:07:32 GMT</pubDate>
    <dc:creator>gpopulis</dc:creator>
    <dc:date>2023-06-26T19:07:32Z</dc:date>
    <item>
      <title>Converting VBScript to Arcade</title>
      <link>https://community.esri.com/t5/developers-questions/converting-vbscript-to-arcade/m-p/1303116#M6656</link>
      <description>&lt;P&gt;I posted in ArcGIS Pro but I think I saw a few post similar questions on here. So I apologize if this isnt the correct place.&lt;/P&gt;&lt;P&gt;I need help converting VBScript into Arcade. This is the VBscript&amp;amp;colon; Round (UTC_Pct, 0) &amp;amp; "%"&lt;/P&gt;&lt;P&gt;Anyone know how I can convert that into Arcade?&lt;/P&gt;&lt;P&gt;SJ&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 18:20:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/converting-vbscript-to-arcade/m-p/1303116#M6656</guid>
      <dc:creator>SamanthaJordan</dc:creator>
      <dc:date>2023-06-26T18:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: Converting VBScript to Arcade</title>
      <link>https://community.esri.com/t5/developers-questions/converting-vbscript-to-arcade/m-p/1303127#M6657</link>
      <description>&lt;P&gt;Not sure what your '&amp;amp;colon;' section means (maybe format into code style), but Round is pretty simple:&amp;nbsp;&lt;A href="https://developers.arcgis.com/arcade/function-reference/math_functions/#round" target="_self"&gt;https://developers.arcgis.com/arcade/function-reference/math_functions/#round&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 18:41:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/converting-vbscript-to-arcade/m-p/1303127#M6657</guid>
      <dc:creator>ZenMasterZeke</dc:creator>
      <dc:date>2023-06-26T18:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: Converting VBScript to Arcade</title>
      <link>https://community.esri.com/t5/developers-questions/converting-vbscript-to-arcade/m-p/1303135#M6658</link>
      <description>&lt;P&gt;As stated above Round is pretty straight forward, just have to access the attribute from the features with something like: Round($feature.UTC_Pct,0). To get the "%" at the end use the Concatenate function.&lt;BR /&gt;&lt;BR /&gt;ex. Concatenate(Round($feature.UTC_Pct,0),"%")&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 19:07:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/converting-vbscript-to-arcade/m-p/1303135#M6658</guid>
      <dc:creator>gpopulis</dc:creator>
      <dc:date>2023-06-26T19:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: Converting VBScript to Arcade</title>
      <link>https://community.esri.com/t5/developers-questions/converting-vbscript-to-arcade/m-p/1303139#M6659</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 19:16:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/converting-vbscript-to-arcade/m-p/1303139#M6659</guid>
      <dc:creator>SamanthaJordan</dc:creator>
      <dc:date>2023-06-26T19:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: Converting VBScript to Arcade</title>
      <link>https://community.esri.com/t5/developers-questions/converting-vbscript-to-arcade/m-p/1303140#M6660</link>
      <description>&lt;P&gt;Thank you! I'll give that a shot.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 19:17:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/converting-vbscript-to-arcade/m-p/1303140#M6660</guid>
      <dc:creator>SamanthaJordan</dc:creator>
      <dc:date>2023-06-26T19:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Converting VBScript to Arcade</title>
      <link>https://community.esri.com/t5/developers-questions/converting-vbscript-to-arcade/m-p/1303467#M6661</link>
      <description>&lt;P&gt;Since the default value for &lt;A href="https://developers.arcgis.com/arcade/function-reference/math_functions/#round" target="_self"&gt;Round&lt;/A&gt;'s number of places is 0, you don't need to add that to your expression.&lt;/P&gt;&lt;P&gt;You can also use &lt;A href="https://developers.arcgis.com/arcade/guide/template-literals/" target="_self"&gt;template literals&lt;/A&gt;&amp;nbsp;in your expression to easily add extra text.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;`${Round($feature.UTC_Pct)}%`&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 27 Jun 2023 16:50:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/converting-vbscript-to-arcade/m-p/1303467#M6661</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2023-06-27T16:50:18Z</dc:date>
    </item>
  </channel>
</rss>

