<?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: No continuity among number formats in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/no-continuity-among-number-formats/m-p/381526#M16776</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I assume you have tried this option...&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" height="410" src="https://community.esri.com/legacyfs/online/448261_pastedImage_1.png" width="352" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 May 2019 22:36:37 GMT</pubDate>
    <dc:creator>XanderBakker</dc:creator>
    <dc:date>2019-05-22T22:36:37Z</dc:date>
    <item>
      <title>No continuity among number formats</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/no-continuity-among-number-formats/m-p/381523#M16773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've already pointed this problem out in a previous post, but thought I'd share another case with some details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I start by wanting to make a map that has percentages labeled on polygons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Added a feature class to my map, which has data like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE class="j-table jiveBorder" style="border: 1px solid #c6c6c6;" width="100%"&gt;&lt;THEAD&gt;&lt;TR style="background-color: #efefef;"&gt;&lt;TH&gt;Name&lt;/TH&gt;&lt;TH&gt;Percentage&lt;/TH&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;John Doe&lt;/TD&gt;&lt;TD&gt;0.12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Jane Doe&lt;/TD&gt;&lt;TD&gt;0.25&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ArcGIS Pro, I go to Data tab &amp;gt; Fields&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/437309_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and format the Percentage column to be Percentage with no decimals:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/437310_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I expect to see in the table is this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE class="j-table jiveBorder" style="border: 1px solid #c6c6c6;" width="100%"&gt;&lt;THEAD style="border: inherit solid inherit;"&gt;&lt;TR style="background-color: #efefef;"&gt;&lt;TH style="border: inherit solid inherit; font-weight: bold; font-size: inherit; padding: 5px;"&gt;Name&lt;/TH&gt;&lt;TH style="border: inherit solid inherit; font-weight: bold; font-size: inherit; padding: 5px;"&gt;Percentage&lt;/TH&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY style="border: inherit solid inherit;"&gt;&lt;TR style="border: inherit solid inherit;"&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;John Doe&lt;/TD&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;12%&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: inherit solid inherit;"&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;Jane Doe&lt;/TD&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;25%&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead, however, I see this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/437311_pastedImage_6.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question: why does Pro round percentages when I specify no decimal places?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To resolve the issue, I try setting it to 2 decimal places, which yields this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-4" src="https://community.esri.com/legacyfs/online/437312_pastedImage_7.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is incorrect, because the values are actual 0.54, 0.64, etc. and I expect them to translate to 54%, 64%, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next,&amp;nbsp;I set out to just find an Arcade expression so that I can display percentages on the polygons and not worry about the number formatting. So I find an expression like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="line-numbers language-markup"&gt;&lt;CODE&gt;Text($feature.PERCENTAGE, '#%')‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So that's cool, now I end up with labels like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-5 jive-image" src="https://community.esri.com/legacyfs/online/437313_pastedImage_9.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I try to actually make a map for a slide with a legend (something the software is supposed to be able to do well, right?). I go to my Layout view, Insert &amp;gt; Legend and get this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-6 jive-image" src="https://community.esri.com/legacyfs/online/437314_pastedImage_10.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yikes, what a mess. So now am I supposed to manually make a legend? I don't see another way to handle this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2019 20:07:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/no-continuity-among-number-formats/m-p/381523#M16773</guid>
      <dc:creator>DanielMatranga</dc:creator>
      <dc:date>2019-02-13T20:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: No continuity among number formats</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/no-continuity-among-number-formats/m-p/381524#M16774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not an ArcPro User (due to its inability to access ms access personal geodatabases) however, Percentages is either a&amp;nbsp; format or a calculated value based upon the number stored in databases.&amp;nbsp; There is no field type of Percentage.&amp;nbsp; So the number is stored as a plain numeric or decimal value.&amp;nbsp; You would have to choose either:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Number represents a fraction.&amp;nbsp; Adjust it to show as a percentage&amp;nbsp; -- (Format)&lt;/P&gt;&lt;P&gt;2. Or apply a calculated value ([Percentage (your field name)]*100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2019 15:35:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/no-continuity-among-number-formats/m-p/381524#M16774</guid>
      <dc:creator>TedKowal</dc:creator>
      <dc:date>2019-02-14T15:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: No continuity among number formats</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/no-continuity-among-number-formats/m-p/381525#M16775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The inconsistency extends to ArcGIS Online also. Here's some ideas to vote up so we don’t have to contend with this forever, maybe:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; &lt;/SPAN&gt;&lt;A _jive_internal="true" href="https://community.esri.com/ideas/15442-arcade-expressions-in-operation-dashboard"&gt;Arcade Expressions in Operation Dashboard&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; &lt;/SPAN&gt;&lt;A _jive_internal="true" href="https://community.esri.com/ideas/16558-auto-populate-a-permanent-field-based-on-arcade-expression"&gt;Auto-populate a permanent field based on Arcade Expression&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; &lt;/SPAN&gt;&lt;A _jive_internal="true" href="https://community.esri.com/ideas/15262-arcade-expression-in-ops-dashboard-list-widget"&gt;Arcade Expression in Ops Dashboard List Widget&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; &lt;/SPAN&gt;&lt;A _jive_internal="true" href="https://community.esri.com/ideas/14684-attribute-expression-web-app-builder-operations-dashboard"&gt;attribute expression &amp;amp; web app builder &amp;amp; operations dashboard&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; &lt;/SPAN&gt;&lt;A _jive_internal="true" href="https://community.esri.com/ideas/13755-arcade-integration-with-infographic-widget"&gt;arcade integration with infographic widget&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; &lt;/SPAN&gt;&lt;A _jive_internal="true" href="https://community.esri.com/ideas/5863"&gt;Add "Currency" and "Percentage" field types to ArcGIS Online in pop ups&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It would be really, really good to have and use the same technique across all areas, from Desktop to Online, instead of creating a distinct attribute column for each scenario.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2019 22:03:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/no-continuity-among-number-formats/m-p/381525#M16775</guid>
      <dc:creator>MattWilkie3</dc:creator>
      <dc:date>2019-05-22T22:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: No continuity among number formats</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/no-continuity-among-number-formats/m-p/381526#M16776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I assume you have tried this option...&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" height="410" src="https://community.esri.com/legacyfs/online/448261_pastedImage_1.png" width="352" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2019 22:36:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/no-continuity-among-number-formats/m-p/381526#M16776</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-05-22T22:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: No continuity among number formats</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/no-continuity-among-number-formats/m-p/381527#M16777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your data is in decimal form (0.12, 0.25, etc.), also considered fractional format. Select the second option, "Number represents a fraction. Adjust it to show as a percentage". This will convert decimals to whole number (12, 25, etc.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your data were already whole numbers (12, 25, 63.24, etc.) then you would go with option one, "Number already represents a percentage".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2019 13:09:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/no-continuity-among-number-formats/m-p/381527#M16777</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2019-05-23T13:09:22Z</dc:date>
    </item>
  </channel>
</rss>

