Good Morning,
I am editing attribute data in Arc Pro and I am trying to figure out how to convert the text values in each field to Proper Case. Currently, the data is just all capitalized. The feature is possible in Arc Map using field calculator and a VB script. I haven't been able to convert the same mechanics in Arc Pro. Attached is a screenshot of the data I would like to convert to Proper Case. I would appreciate any help or direction. Thank you.
See How To: Convert a string to proper case in the ArcMap Field Calculator . Although for ArcMap, it is using the str.title # Built-in Types — Python 3.8.2 documentation that can be used in Pro too.
Using Arcade you could use.
Proper($feature.Primary, 'everyword')