I'm trying to build an Arcade expression for an attribute that will flag features that have non-numeric values in the strings. Of course, the easier thing to do would be to have the field a long integer/short integer, yet this is over a systematically created field that is text string for the data type, yet the intent of the field for the field to NOT store any attribute values other than numeric
Below is an attribute rule expression built to simply root-out null values
return !IsEmpty($feature.Name)
Trying to replace !IsEmpty with a function helper to sift through the values to look for strings having anything other than numbers.
Thanks!