Hi, I imported a SPSS dataset to SAS by following codes: %web_drop_table(GSS.ISSP); FILENAME REFFILE '***.sav'; PROC IMPORT DATAFILE=REFFILE DBMS=SAV OUT=GSS.ISSP replace; RUN; PROC CONTENTS DATA=GSS.ISSP; RUN; The data in the SPSS file was numeric, but in the SAS output dataset, shows characteristic values. However, in the Proc content results, the variable was labeled as numeric. How do I let SAS showing the numeric values in SPSS not the values in SPSS? Thank you very much!
... View more