Chapter Contents |
Previous |
Next |
Statements with the Same Function in Multiple Procedures |
WHERE where-expression; |
Required Arguments |
Procedures That Support the WHERE Statement |
CALENDAR | RANK | |
CHART | REPORT | |
COMPARE | SORT | |
CORR | SQL | |
DATASETS (APPEND statement) | STANDARD | |
FORMS | TABULATE | |
FREQ | TIMEPLOT | |
MEANS/SUMMARY | TRANSPOSE | |
PLOT | UNIVARIATE | |
Details |
proc report data=debate nowd out=onlyfr(where=(year='1')); run;
For more information on WHERE=, see SAS Language Reference: Dictionary.
Example |
options nodate pageno=1 linesize=64 pagesize=40;
proc print data=debate noobs; where gpa>3.5; title 'Team Members with a GPA'; title2 'Greater than 3.5'; run;
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.