<?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 How to group the number by thousands using Arcade in labels?  in Developers Questions</title>
    <link>https://community.esri.com/t5/developers-questions/how-to-group-the-number-by-thousands-using-arcade/m-p/618945#M4154</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am creating labels for a map in AOL using Arcade.&amp;nbsp;The field is numeric, but when I round it, the thousand coma does not appear in label. Here is the expression I am using:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;round(number($feature.MfgShip_perAc_allTim), 0) + " $/acre"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It prints:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1045 $/acre&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I get it to print &lt;STRONG&gt;1,045 $/acre&lt;/STRONG&gt;?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am&amp;nbsp;not a developer, just a user trying to learn how Arcade works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mila&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 15 Jul 2017 04:26:33 GMT</pubDate>
    <dc:creator>MilaAlvarez</dc:creator>
    <dc:date>2017-07-15T04:26:33Z</dc:date>
    <item>
      <title>How to group the number by thousands using Arcade in labels?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-group-the-number-by-thousands-using-arcade/m-p/618945#M4154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am creating labels for a map in AOL using Arcade.&amp;nbsp;The field is numeric, but when I round it, the thousand coma does not appear in label. Here is the expression I am using:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;round(number($feature.MfgShip_perAc_allTim), 0) + " $/acre"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It prints:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1045 $/acre&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I get it to print &lt;STRONG&gt;1,045 $/acre&lt;/STRONG&gt;?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am&amp;nbsp;not a developer, just a user trying to learn how Arcade works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mila&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Jul 2017 04:26:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-group-the-number-by-thousands-using-arcade/m-p/618945#M4154</guid>
      <dc:creator>MilaAlvarez</dc:creator>
      <dc:date>2017-07-15T04:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to group the number by thousands using Arcade in labels?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-group-the-number-by-thousands-using-arcade/m-p/618946#M4155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using the Text formatting to insert the comma. For example:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text(Round(Number(1045),0),"#,###") + " $/acre"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2017 17:44:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-group-the-number-by-thousands-using-arcade/m-p/618946#M4155</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2017-07-18T17:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to group the number by thousands using Arcade in labels?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-group-the-number-by-thousands-using-arcade/m-p/618947#M4156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much Kelly,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You made my day!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mila&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2017 18:01:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-group-the-number-by-thousands-using-arcade/m-p/618947#M4156</guid>
      <dc:creator>MilaAlvarez</dc:creator>
      <dc:date>2017-07-18T18:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to group the number by thousands using Arcade in labels?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-group-the-number-by-thousands-using-arcade/m-p/618948#M4157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kelly,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was wondering if Arcade also allows you to add color to part of your&lt;/P&gt;&lt;P&gt;label. Here is what I am trying to show in my label:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.2M&lt;/P&gt;&lt;P&gt;(25k)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text(round(number($feature.WUI_Houses/1000000),1), "#,###.#") + Text("M")+&lt;/P&gt;&lt;P&gt;TextFormatting.NewLine + Text("(") +&lt;/P&gt;&lt;P&gt;Text(round(number($feature.WUI_Seas_H/1000),0), "#,###.#") + Text("k") +&lt;/P&gt;&lt;P&gt;Text(")")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to learn how to code color red for the second label. Using ArcPro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mila&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2017 23:52:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-group-the-number-by-thousands-using-arcade/m-p/618948#M4157</guid>
      <dc:creator>MilaAlvarez</dc:creator>
      <dc:date>2017-07-21T23:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to group the number by thousands using Arcade in labels?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-group-the-number-by-thousands-using-arcade/m-p/618949#M4158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the answer in your other thread:&amp;nbsp;&lt;A href="https://community.esri.com/thread/198659-arcade-how-to-change-color-in-only-one-of-the-two-stacked-labels"&gt;https://community.esri.com/thread/198659-arcade-how-to-change-color-in-only-one-of-the-two-stacked-labels&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Jul 2017 03:11:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-group-the-number-by-thousands-using-arcade/m-p/618949#M4158</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2017-07-22T03:11:31Z</dc:date>
    </item>
  </channel>
</rss>

