[GIS] Using the Field Calculator in a Domain field

arcgis-10.0attribute-tabledomainsfield-calculator

I have a coded domain field with 10 dropdown options. Possible choices include integers and text.

I need to change a selection of 250 features (which have differing values) to the same value. This value is one of the dropdown values.

When I use the field calculator (field="value") I get an error. The calculated value is invalid…..

Anyone know how to change multiple values within a coded domain field?

enter image description here

Best Answer

It will depend somewhat on the type of field and domain you are using.
Assuming you are using the defaults, integer, and coded value.
you want the syntax in the field calculator to be (selectedrowsinmydomainfield) = newcodedvalue in the example...
Pic1
nom_size is the domain with 1 = 1"
If I want to change all selected values to 1".
I use the syntax in the middle ( [nom_size] = 1
If you are using text field with a text domain.

EDIT:
Ok since you are using a text domain and your codes all match your descriptions.
If you want to change all selected rows to be BETH.
[ZONE_] = "BETH"

Related Question