The first block of code runs fine but i where it says "value of F14a" i want it to actually assign the string that is stored there to F14a_pd3. But the Syntax below that should do that crashes SPSS for me. F14a is a string variable of length 50.
Working useless Syntax:
STRING F14a_pd3 (A50).
DO IF NOT F14a="missing" & papadex=3.
COMPUTE F14a_pd3="value of F14a".
ELSE.
COMPUTE F14a_pd3="missing".
END IF.
FREQUENCIES F14a_pd3.
Crashing Syntax:
STRING F14a_pd3 (A50).
DO IF NOT F14a="missing" & papadex=3.
COMPUTE F14a_pd3=F14a.
ELSE.
COMPUTE F14a_pd3="missing".
END IF.
FREQUENCIES F14a_pd3.