Hello
I want to print all variables and their respective variable descriptions in a large Dataset in SPSS. How do i do this?
Im not that proficient with SPSS and this forum and if i posted this in the wrong section i am sorry and will correct it if needed.
Thank you in advance 🙂
You have posted in the SAS communities. You probably want to find an SPSS forum.
View solution in original post
Thanks my bad i forgot that i used to work with SAS and i had this forum saved.
If you are working in SPSS itself, you can get help for that at IBM SPSS Statistics - Support
If you are working in SAS, you'll need to import the data first, then use PROC CONTENTS to get info about the dataset and columns:
PROC IMPORT OUT=WORK.MY_SPSS_DATA FILE="DRIVE:\path\my_spss_file.sav" DBMS=SPSS REPLACE; RUN; PROC CONTENTS DATA=WORK.MY_SPSS_DATA; RUN;
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Lock in the best rate now before the price increases on April 1.
Register now!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.