Select to view content in your preferred language

Water Distribution Data Management? Need help correcting the decimal point in the Measured Length Field.

480
1
Jump to solution
05-05-2022 11:08 AM
WalterFeurer
Occasional Contributor

Created a layer label for a water line that would show size, make, and length.  I successfully changed the decimal location in the table but this does not change the label.  I have the same outcome in both AGOL and ArcPro.  What am I missing here?

  WalterFeurer_0-1651769909433.png

 

0 Kudos
1 Solution

Accepted Solutions
JesseWickizer
Esri Contributor

Label the feature with an Arcade expression, and in that expression use the Round function to control the number of decimal places to show. Example label expression:

Round($feature.MEASURED_LENGTH, 0)

 

View solution in original post

1 Reply
JesseWickizer
Esri Contributor

Label the feature with an Arcade expression, and in that expression use the Round function to control the number of decimal places to show. Example label expression:

Round($feature.MEASURED_LENGTH, 0)