I'm using ArcGIS 10.3 and I want to create classes (1-4) in a field called "Util_Class" based on the values of a field called "OverallUtil". I think I have syntax error and have been entering this into the Field Calculator:
def Reclass (!Util_Class!):
if (!OverallUtil! <= 0.6):
return 1
elif ( !OverallUtil!>0.6 and !OverallUtil!<= 0.75):
return 2
elif ( !OverallUtil!>0.75 and !OverallUtil!<=0.90):
return 3
elif (!OverallUtil! > 0.90):
return 4
