I have recoded a variable with the menu structure, syntax as follows:
RECODE soc_alone
DATASET ACTIVATE DataSet1.
RECODE soc_alone (1=7) (2=6) (3=5) (4=4) (5=3) (6=2) (7=1) INTO soc_alone_recoded.
VARIABLE LABELS soc_alone_recoded 'Ik vind het onaangenaam om alleen te zijn'.
EXECUTE.
However, is it correct that I cannot find a new variable soc_alone_recoded anywhere and it has overwritten the original variable soc_alone? Is a new variable always added at the end of the workspace? I can't find it and if I try Edit - Go to variable it is not listed.
------------------------------
Renee Damstra
------------------------------