Under what circumstances would you code a SELECT construct
instead of IF statements?
Answers were Sorted based on User's Feedback
Answer / sumalatha.ch
select statement is reduced cpu time.and make the programme
easier to read and debug
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / 3nadh
Select Statement executes one of several statements or
group of statements.
If Statement :- Continues processing only those obs that
meet the condition.
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / jothi sankar
--> When renaming of varibales during getting data itself,
--> new varible creation by combining already existing
varibales(eg: Name = FName + LName) to reduce memory usage
--> When nested conditions are less and getting more %
records from base
| Is This Answer Correct ? | 0 Yes | 4 No |
How would you combine 3 or more tables with different structures?
When looking for data contained in a character string of 150 bytes, which function is the best to locate that data: scan, index, or indexc?
What are the uses of sas?
What is the basic syntax of a sas program?
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?
I use NOCUM/NOPERCENT option in the tables statement like this Proc freq data = deepak; tables x y /nocum nopercent; run; Here I get nopercent and nocum in the output only for variables x and y. How do i do it for all variables? Deepak
WHAT IS LAG FUNCTION ? WHERE CAN YOU IMPLEMENT THIS FUNCTION?
i have a null dataset with 20 variables. i want to upload the variables which contain name like a or k or anything in another dataset.how can we create the dataset?
How would you define the end of a macro? : sas-macro
In the flow of DATA step processing, what is the first action in a typical DATA Step?
how to read raw data in sas. Do it manually and throw the programming.
How do you add a number to a macro variable?