hello !
I want to rename an attribute, for example I have, 1 and 2 for ( sex ) I want to replace the character 1 by Female and the character 2 by male.
Solved! Go to Solution.
Hi @meziane36u
One option would be to use a Select tool to change the field type of [sex] to one of the string field types (assuming it's coming in as one of the numeric types). Then use a Formula tool to update that field
IF [sex] = '1'
THEN 'FEMALE'
ELSE 'MALE'
ENDIF
Thanks !!