I tested SPSS and excel with data generated this way.
*create file with 400 variables to see if SPSS can read a 400 variable CSV file.
new file.
input program.
vector x (400,f3).
loop id = 1 to 3.
loop #p = 1 to 400.
compute x(#p) = rnd(rv.normal(50,10)).
end loop.
end case.
end loop.
end file.
end input program.
SAVE TRANSLATE OUTFILE='C:\project\test400.csv'
/TYPE=CSV
/ENCODING='Locale'
/MAP
/REPLACE
/FIELDNAMES
/CELLS=VALUES.
I was able to read in the file with excel.
Using theGUI <file> <read text data>
I was able to read the file into SPSS.
See if you can work with the attached files.
the second one was created with
compute x(#p) = rnd(rv.normal(50000000,10)).
-------------------------------------------
Arthur Kendall
Social Research Consultants
-------------------------------------------