For what purpose(s) would use the RETURN statement?
Answer / kiran
Return statement is used to return to a called module some
thing similar to a GOTO statement,
GOTO Label1:
Label1:
Statement 1;
Statement 2;
RETURN;
Here the RETURN statement helps in branching back to GOTO
label1 statement after performing statements in Label1
| Is This Answer Correct ? | 7 Yes | 0 No |
Why is a STOP statement needed for the point=option on a SET statement?
i have a dataset with 100000 records. i want 100 records from that dataset and create a dataset.we need to pick the observations random order like 100obs,500obs,1020obs,1890obs,2565obs like that i need 100 obs in random order? how can we create this one?
what is the use of proc contents and proc print in sas? : Sas-administrator
how would you determine the number of missing or nonmissing values in computations? : Sas programming
If i doest required Cumilative frequency in my table, generated by using PROC FREQ what i had to do?
Differentiate between sas functions and sas procedures.
· What are some good SAS programming practices for processing very large data sets?
how to remove the duplicates by proc sql?
What is a method to debug and test your SAS program?
Can Some one Explain How the Datasets from SAS can be loaded in to the MVS OS?
If reading a variable length file with fixed input, how would you prevent SAS from reading the next record if the last variable didn?t have a value?
Differentiate between ceil and floor functions.