I have a Likert Scale with answers '-2, '-1, 0, 1, 2
Excel cannot calculate the AVERAGE and SD with these numbers, therefore I want to change them
'-2 -> 1
'-1 -> 2
0 -> 3
1 -> 4
2 -> 5
I put a SWITCH Formula in Alteryx, but it doesn't work... Do you know where my mistake is?
My syntax is Switch([_CurrentField_],0,''-2',1,''-1',2,'0',3,'1',4,'2',5)