I am trying to convert my SAS file, which has over 2000 variables, into SPSS. However, when I open my SPSS file, I only see the labels being carried over, but my values are not. My formats and datasets are all in the "ab" library. This is the code I wrote: /*Create a dataset from a format catalog*/ proc format library=ab cntlout=ab.formats_data; run; /*Proc export the data*/ proc export data = ab.final_merged outfile = "H:\dataset\final_merged.sav\"; DBMS= spss replace; FMTLIB = ab.formats_data; run; Thank you!
... View more