Hello,
I'm currently trying to delete the first 9 numbers/letters within a field column in ArcPro. For example, here is one value within the field: 1400000US39712105001. I'm trying to delete the "1400000US" from the entire column. To my knowledge, I need to use the trim function which is an arcade expression right? If so, I unfortunately have not been successful at doing that. Any help would be much appreciated. Thank you!
Try this with Python Parser
!FIELD_NAME![9:]
Thanks! Worked like a charm!