what is conditional processing?
Answers were Sorted based on User's Feedback
Answer / xxx
mainly two types of conditions we are using,
Data step and Proc SQL coditions,
1. Datastep
--> where, if then else (nothing but filter conditions).
2. Proc SQL;
--> Case, When then else conditions.
loop coditions.
In macros we can use any kind of filter conditions.
Is This Answer Correct ? | 11 Yes | 0 No |
Answer / solasa
use "IF ,IF THEN,CASE,WHERE " terms to subset conditionally.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / beula.koduri24
macro facilty can control some portions of the sas program,based on a specfic conditions known as conditional processing.
Is This Answer Correct ? | 2 Yes | 8 No |
Describe what are the different levels of administrative users in sas? : sas-grid-administration
What is the use of function Proc summary?
What are the automatic variables for macro? : sas-macro
Code the MEANS to produce output to be used later.
There is a field containing a date. It needs to be displayed in the format "ddmonyy" if it's before 1975, "dd mon ccyy" if it's after 1985, and as 'Disco Years' if it's between 1975 and 1985. How would you accomplish this in data step code? Using only PROC FORMAT
How can you limit the variables written to output dataset in data step?
Give some examples where proc report’s defaults are same as proc print’s defaults?
I have a SCD Type 2 Dimention for Location In which A Sales Office in Having two Surrogate Keys just because of the change in it's Sales Group. SKey SalesGroup Sales Office BeginDate EndDate 280 SG1 SO1 01APR2000 01APR2010 281 SG2 SO1 02APR2010 31MAR2999 Now while loading the Fact, the Lookup ir returning SKey 280 for records before and after 01APR2010. I am not able to give WHERE condition in the Lookup Properties (TranDate between BeginDate and EndDate). Please help.
what is the prob plot in clinical domain
what is the one statement to set the criteria of data that can be coded in any step? : Sas programming
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
How do you delete duplicate observations in sas?