Hi Kate,
As Rick mentioned, it would help if you gave more details. However, generally speaking, the variables are not added up when computing the SEC. There are, of course, different versions of the SEC schemas. Those based on education, occupation, and a list of equipment in the household can be computed in SPSS using an IF structure.
As an example without the list of equipment in the household (you can add that later).
NUMERIC EDUCATION OCCUPATION (F1.0).
VAR LAB EDUCATION 'Education level'.
VAL LAB EDUCATION
1 'Low'
2 'Medium'
3 'High'.
VAR LAB OCCUPATION 'Occupation'.
VAL LAB OCCUPATION
1 'Farmer'
2 'Blue-collar worker'
3 'White-collar worker'
4 'Manager'
5 'Director'.
You first
need a matrix to tell you which SEC level corresponds to each possible combination between EDUCATION and OCCUPATION. Then, you write the conditions, as an example:
IF (EDUCATION = 1) AND (OCCUPATION = 1) SEC = 1.
ETC.
IF (EDUCATION = 3) AND (OCCUPATION = 5) SEC = 5.
A few thoughts:
1. summing may not work here because (EDUCATION=2 & OCCUPATION = 3) = 5 which is the same as (EDUCATION=1 & OCCUPATION = 4) - not sure you will want to assign the same SEC level to these 2 cases, for instance.
2. if you still want to sum them up, then use Rick's method NewVar = SUM(Var1, Var2, etc.) rather than COMPUTE NewVar = Var1 + Var2 + etc.
The SUM works even if some of the variables have missing values. The COMPUTE method will produce a missing value instead.
------------------------------
Silviu Matei
------------------------------