[GIS] How to convert field values from lower case to upper case in ArcGIS 10.1

arcgis-10.1arcmappythonvbscript

Using the Field Calculator in ArcGIS 10.1, I am able convert the first letter in a value from lower case to upper case. How do you convert the entire value to upper case, though? I can't seem to locate a VBScript for it.

For example, I want to convert small to SMALL.

Best Answer

Another alternative using Python would be:

!fieldname!.upper()

as described in the online help Calculate Field examples.

Related Question