Right now I am wondering what I might be possibly doing wrong with my SPSS syntax. I have got 2 already dichotomized variables and I would need to combine them to make the 3rd one.
If var1 and var2 = 0, than it should be 0, and if var1 or var2 = 1 (or both of them), then it should be 1.
I tried this syntax (and many more :D), it is just not working.
if(roboSV_19_more = 0 and roboSV_19_less = 0) roboSV_19_together = 0.
if(roboSV_19_more = 1 or roboSV_19_less = 1) roboSV_19_together = 1.
I would be very greatful for any of your help, tipps and tricks. Thank you!