Hello Arcade community - I'm using ArcGIS Pro 3.1.0 & have a point feature class representing septic tanks. I want to label a map with the tank ID & on a newline the tank capacity in gallons. The tank capacity field is a numeric float type.
I'm want the label to be this:
ST-1
1,250 gals.
Here's my expression:
$feature.wwstank_id + TextFormatting.NewLine + text($feature.tank_cpcty,"#,###") + " gals."
returns this:
ST-1
1,250
gals.
When I remove the space preceding gals.
$feature.wwstank_id + TextFormatting.NewLine + text($feature.tank_cpcty,"#,###") + "gals."
returns this:
ST-1
1,250gals.
Please help me understand how to use a space character.
Thnx!