SAS: Creating List Report
WWW.HANDSONSYSTEM.COM
School of Data Science
1
Creating List Report
Syntax
Proc print data=libref.input_dataset;
Additional SAS Statements;
Run;
www.handsonsystem.com
2
Selecting Variable
Syntax
Proc print data=libref.input_dataset;
Var Variable1 Variable2 Variable3 ….. Variable(n);
Additional SAS Statements;
Run;
www.handsonsystem.com
3
Creating List Report
Example
www.handsonsystem.com
4
Creating List Report
Output
www.handsonsystem.com
5
Selecting Variable
Example
www.handsonsystem.com
6
Selecting Variable
Output
Note: It follows the
order of the variable
in the “Var” statement
and report are
produced in the same
order. Like we have
mentioned “Var Make
Type Model MSRP;” .
www.handsonsystem.com
7
Thank You
WWW.HANDSONSYSTEM.COM
School of Data Science
8

SAS Creating List Report