<?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 label large dollar numbers in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/label-large-dollar-numbers/m-p/1570806#M91478</link>
    <description>&lt;P&gt;label large dollar numbers ex.1745987123.4567 to be $1.75B, or 756984 to be $.76B I know about round(), and currency and mid() cant get them to show what i want.&lt;/P&gt;</description>
    <pubDate>Sat, 21 Dec 2024 22:50:29 GMT</pubDate>
    <dc:creator>AllenKieslich</dc:creator>
    <dc:date>2024-12-21T22:50:29Z</dc:date>
    <item>
      <title>label large dollar numbers</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/label-large-dollar-numbers/m-p/1570806#M91478</link>
      <description>&lt;P&gt;label large dollar numbers ex.1745987123.4567 to be $1.75B, or 756984 to be $.76B I know about round(), and currency and mid() cant get them to show what i want.&lt;/P&gt;</description>
      <pubDate>Sat, 21 Dec 2024 22:50:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/label-large-dollar-numbers/m-p/1570806#M91478</guid>
      <dc:creator>AllenKieslich</dc:creator>
      <dc:date>2024-12-21T22:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: label large dollar numbers</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/label-large-dollar-numbers/m-p/1570827#M91479</link>
      <description>&lt;P&gt;If all your values are in billions something simple like this should work in &lt;STRONG&gt;Arcade&lt;/STRONG&gt; where SHAPE_Area is my number field:&lt;/P&gt;&lt;P&gt;"$" + round($feature.SHAPE_Area/1000000000, 2) +"B"&lt;/P&gt;&lt;P&gt;To pad trailing zeroes for two decimal places:&lt;/P&gt;&lt;P&gt;Text($feature.SHAPE_Area/1000000000, '$#,###.00')+"B"&lt;/P&gt;&lt;P&gt;A problem arises if you have smaller numbers such as 756984 that would return $0.00B. In this case you might want to create a second label class and filter to label only an acceptable range of values and adjust its label say for millions:&lt;/P&gt;&lt;P&gt;Text($feature.SHAPE_Area/1000000, '$#,###.00')+"M"&lt;/P&gt;&lt;P&gt;If you create a second label class, make sure that the first label class filters out the values from the second or you will get two labels.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Dec 2024 03:06:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/label-large-dollar-numbers/m-p/1570827#M91479</guid>
      <dc:creator>BarryNorthey</dc:creator>
      <dc:date>2024-12-22T03:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: label large dollar numbers</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/label-large-dollar-numbers/m-p/1570849#M91481</link>
      <description>&lt;P&gt;Thanks Barry, excellent info, will give it a try. it would be nice if the feature Symbol and label could be the same. You would not need code, making it newer user friendly. Tx again.&lt;/P&gt;</description>
      <pubDate>Sun, 22 Dec 2024 18:28:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/label-large-dollar-numbers/m-p/1570849#M91481</guid>
      <dc:creator>AllenKieslich</dc:creator>
      <dc:date>2024-12-22T18:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: label large dollar numbers</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/label-large-dollar-numbers/m-p/1570860#M91482</link>
      <description>&lt;P&gt;Text($feature.SHAPE_Area/1000000000, '$#,###.00B') should work as well as:&lt;/P&gt;&lt;P&gt;Text($feature.SHAPE_Area/1000000000, '$#,###.00')+"B"&lt;/P&gt;</description>
      <pubDate>Sun, 22 Dec 2024 21:12:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/label-large-dollar-numbers/m-p/1570860#M91482</guid>
      <dc:creator>BarryNorthey</dc:creator>
      <dc:date>2024-12-22T21:12:55Z</dc:date>
    </item>
  </channel>
</rss>

