BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Gablz
Obsidian | Level 7

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 🙂

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

You have posted in the SAS communities. You probably want to find an SPSS forum.

--
Paige Miller

View solution in original post

3 REPLIES 3
PaigeMiller
Diamond | Level 26

You have posted in the SAS communities. You probably want to find an SPSS forum.

--
Paige Miller
Gablz
Obsidian | Level 7

Thanks my bad i forgot that i used to work with SAS and i had this forum saved.

SASJedi
Ammonite | Level 13

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;
Check out my Jedi SAS Tricks for SAS Users

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

Mastering the WHERE Clause in PROC SQL

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.

Discussion stats
  • 3 replies
  • 929 views
  • 1 like
  • 3 in conversation