Also, how do I label the new variables:
q39b_1m 'Senior management'
q39b_2m 'Marketing'
Thanks!
RECODE
q39b_1 q39b_2
(4 thru 5=1) (1 thru 3 =0) INTO q39b_1m q39b_2m.
EXECUTE .
VALUE LABELS q39b_1m q39b_2m
1 'Difficult / Very Difficult'
0 'Moderately / Not Difficult'
EXECUTE.
SPSS message:
>Warning # 4492 in column 1. Text: EXECUTE
>The (ADD) VALUE LABELS command included a symbol other than a value where a
>value (either numeric or string) was expected. For compatibility with
>previous systems, a parenthesized value would have been acceptable. All
>value labels up to the next slash will be ignored.
You need to terminate your VALUE LABELS command with a period, like
this:
VALUE LABELS q39b_1m q39b_2m
1 'Difficult / Very Difficult'
0 'Moderately / Not Difficult' .
No EXECUTE is needed after the value labels command either.
--
Bruce Weaver
bwe...@lakeheadu.ca
www.angelfire.com/wv/bwhomedir
Any suggestions on syntax for labeling the new variables?
variable labels
q39b_1m 'Senior management'
q39b_2m 'Marketing'