Hi all,
I'm looking at survey data that has standard Likert type repsonses (Agree, Strongly Agree, etc.) and i'd like to update these responses to numerical values rather than the text (e.g. Strongly Disagree = 1, Disagree = 2, etc.). I thought that the Multi-Field Formula tool would be the way to go but can't figure out if I have it configured correctly. Any thoughts?
Thanks
jm
Replace([_CurrentField_], 'Strongly Disagree', '1')
AND
Replace([_CurrentField_], 'Disagree', '2')
AND
...