I am a SPSS newbie having trained previously in R and Stata, however some survey data I am working on uses SPSS so I am forced to convert.
I have a relatively simple question - how once I have created a variable, do I then move it after another variable?
For example, I am creating a new variable 'bmi' from height and weight. How do I put this new variable directly after height and weight and not at the end?
COMPUTE bmi=weight/((height/100)*(height/100)).
VARIABLE LABELS bmi 'Calculated BMI'.
EXECUTE.
I don't wish to reorder all my variables, as there is over 500 (and more are being created from other researchers working on the same data).
Thanks in advance.