![]() Chapter Contents |
![]() Previous |
![]() Next |
| Null |
| Valid: | Anywhere |
| Category: | Action |
| Type: | Executable |
| Syntax | |
| Without Arguments | |
| Details | |
| Examples | |
| See Also |
Syntax |
| ; |
| or |
| ;;;; |
The Null statement signals the end of the data lines that occur in your program.
| Details |
| Examples |
data test; input score1 score2 score3; datalines; 55 135 177 44 132 169 ;
data test2; input code1 $ code2 $ code3 $; datalines4; 55;39;1 135;32;4 177;27;3 78;29;1 149;22;4 179;37;3 ;;;;
data _null_; set dsn; file print header=header; put 'report text'; . . . more statements . . . return; header:; run;
| See Also |
Statements:
|
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top of Page |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.