[GIS] Converting text to proper case using ArcGIS field calculator

arcgis-desktopattribute-tablefield-calculatorpython-parser

I am working on a set of data that has over 40,000 records on ArcGIS and I want to use a Proper Case for several fields/columns on the table.

Is there a Python Script that can help me automate this process as I desire to save time while working on this records?

Best Answer

If you mean a capital letter at the start of each word you can use python's title method

str.title()

where str is your input field.

You can use this in field calculator on all records