I need to create a calculated column in SAS Viya using case statement see below how I want the results case Q4_1_WebSite_Experience when '1' then 'Irritated' when '2' then 'Dissapointed' when '3' then 'Neutral' when '4' then 'Satisfied' when '5' then 'Delighted' else 'None' end as WebSite_Experience
... View more