Hi,
I believe that it is also possible to communicate in Dutch
Yes, but not in the English part of the forum.
Well, I took your zip file, unzipped and removed the "(3)" from the filename.
Then I ran the syntax with the folder of the *.dat file
/FILE='C:\Users\lime\Desktop\Limesurvey_forum\survey_797519_SPSS_data_file.dat'
and
As you see, the VARIABLE LABELS of your experiment are too long.
They are usually too long if you enter a lot of explanation and especially the HTML table in the question text.
And they usually contain text, that you do not want to have in your analysis.
Edit these texts.
And the missing VALUE LABELS. No problem.
Add them: Now or later in the SPSS Data View
I added in the synatx file
*Define Value labels.
VALUE LABELS V6
"A1" "my new label"
"A2" "the second option"
"A3" "what is this".
VALUE LABELS V7
and here we are
So there shouldn't be an issue.
Now another solution if you still get problems to read the data this way.
Import the *.dat file directly
To get the labels and the
Here you may use your syntax file, remove the "GET DATA" part.
*$Rev: 121017 $ all 2.
SET UNICODE=ON.
SHOW LOCALE.
PRESERVE LOCALE.
SET LOCALE='en_UK'.
*Define Variable Properties.
VARIABLE LABELS V1 "id".
VARIABLE LABELS V2 "submitdate".
VARIABLE LABELS V3 "lastpage".
VARIABLE LABELS V4 "startlanguage".
VARIABLE LABELS V5 "Seed".
VARIABLE LABELS V6 "
...
and run it
Joffm