Does arcade support rounding of decimal numbers or applying a money format? Right now Arcade is spitting out 6.2568 for example but I only want to see 6.26
Thanks
Solved! Go to Solution.
Hi Joerodney ,
In addition to the solution provided by Jeff Ward you can also use the Text function to format a value:
Text($feature.fieldname, "$ #.00")
View solution in original post
What if you tried
"$" + Round($feature.fieldname, 2)
Mathematical Functions | ArcGIS for Developers
Perfect!