Mari87 wrote:
Hi Penguin_Knight!
I thought I already tried to put the exact location in front, but now it works fine, thanks a lot!
But I have a second problem. This is about the variable view:
Normaly every question is a variable with a couple of values
Question 1: How are you A=Good B=Bad C=Not Good, Not Bad
Variable 1 is question 1
Values A=1 B=2 C=3
In my case I have only variables and no values! So:
Question 1A = variable 1
Question 1B = variable 2
Question 1C = Variable 3
So I can only see 1's and 0's in my data view.
Do you also have an idea how I can solve this second problem? I hope so
Kind regards!
Mari Hilgerdenaar
This is likely because the original online questionnaire used a wrong type of question format. In your scenario, the questionnaire designer should have used radio button type of response, where user can only pick one answer. Instead, he/she used a multiple response format, which will return one yes/no (representing checked/unchecked) for each single option.
Assume your respondents didn't check multiple boxes, there are ways to savage the data. For example, you can use this syntax:
SPSS Syntax wrote:
IF Question1A = 1 TrueQuestion1 = 1 .
IF Question1B = 1 TrueQuestion1 = 2 .
IF Question1C = 1 TrueQuestion1 = 3 .
EXECUTE .