Hello All, Novice Here
I am trying to use a formula that will assign a value based on the words it finds in the table. I am not sure what I am missing. I want the resulting value 1-5 to appear in the "Raw" column. The table below is the mock up of what I am looking to do.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Survey Type[/TD]
[TD]Answer[/TD]
[TD]Raw[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Post-Chat[/TD]
[TD]Very Satisfied[/TD]
[TD]5[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I am trying to use a formula that will assign a value based on the words it finds in the table. I am not sure what I am missing. I want the resulting value 1-5 to appear in the "Raw" column. The table below is the mock up of what I am looking to do.
Code:
=IF([@Answer]="", "",IF([@Answer]"Very Satisfied",5,IF([@Answer]"Satisfied",4,IF([@Answer]"Neither Satisfied Nor Dissatisfied"
,3,IF([@Answer]"Dissatisfied",2,IF([@Answer]"Very Dissatisfied",1,)))))))
[TABLE="width: 500"]
<tbody>[TR]
[TD]Survey Type[/TD]
[TD]Answer[/TD]
[TD]Raw[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Post-Chat[/TD]
[TD]Very Satisfied[/TD]
[TD]5[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]