I have a property containing a value with three decimal and I want to make an annotation with only one decimal.
How do I set op the PBA string in the Geospatial Administrator ?
TIA
Erik Wirring
Use an XFM Expression Evaluator for the PBA string. Here's the Help file example:
Round
Round off a value.
double XFM.Round (double value, Int digits)
XFM.Round(3.141592654, 2) results in 3.14
You can substitute the Property Name for the value in that example:
XFM.Round(Geometry_Area, 2)
This expression also works in the Labeling tool to limit the number of decimal values.
Thanks for the help :-)
Erik