![]() Chapter Contents |
![]() Previous |
![]() Next |
| DO WHILE |
| Valid: | in a DATA step |
| Category: | Control |
| Type: | Executable |
| Syntax | |
| Arguments | |
| Details | |
| Comparisons | |
| Examples | |
| See Also |
Syntax |
|
DO WHILE (expression);
...more SAS statements... |
| END; |
| Details |
| Comparisons |
There are three other forms of the DO statement:
| Examples |
n=0;
do while(n<5);
put n=;
n+1;
end;
| See Also |
Statements:
|
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top of Page |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.