For what purpose would you use the RETAIN statement?
No Answer is Posted For this Question
Be the First to Post Answer
What does the RUN statement do?
what is intially documentation for a sas programmer?
how does sas handle missing values in formats? : Sas programming
Which date functions advances a date time or date/time value by agiven interval?
In the flow of DATA step processing, what is the first action in a typical DATA Step?
what are scrubing procedures in SAS?
Explain the use of proc print and proc contents?
What is the significance of the ‘OF’ in X=SUM (OF a1-a4, a6, a9);?
what is sas olap server? : Sas-di
What is the different between functions and PROCs that calculate the same simple descriptive statistics?
What is the basic structure of the SAS base program?
What would the following datastep do? Data _null_; Set Dist end=eof; Call Symput("xx"!!left(put(_n_,2.)),&dimension); If EOF then Call Symput('numrows',left(put(_n_,2.))); Run; dimension is a macro variable that is being passed here