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 |
what is broad cast agent? : Sas-bi
how we can create optional or required parameters in SAS macro...
How sas treats the dsd delimiters?
How do you specify the number of iterations and specific condition within a single do loop?
Mention what are the data types does SAS contain?
what is treatment emergent events and treatment emregent adverse event
What do the PUT and INPUT functions do?
What is the difference between order and group variable in proc report?
what is transformation in sas data integration? : Sas-di
What is program data vector (pdv) and what are its functions?
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;
How to limit decimal places for variable using proc means?