Created
March 17, 2014 16:04
-
-
Save statgeek/9602187 to your computer and use it in GitHub Desktop.
SAS - Variable List in Results WIndow
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*This code will print all the variables into the output window, | |
space delimited, replace the data= with the dataset of interest.*/ | |
proc contents data=sashelp.class short; | |
run; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment