SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Generating Data with DO Loops
Conditionally Executing DO Loops


Question: What is the value of x at the completion of the DATA step?
     data work.test;
        x=15;
        do until(x>12);
           x+1;
        end;
     run;

           


  back||next

 

Copyright © 2002 SAS Institute Inc., Cary, NC, USA. All rights reserved.

Terms of Use & Legal Information | Privacy Statement