what is data integration? : Sas-di
No Answer is Posted For this Question
Be the First to Post Answer
how can you create zero observation dataset? : Sas programming
What would be the value of month at the end of data step execution and how many observations would be there?
you have a data set like this. data qqq; input name $ total; cards; qq 22 ww 33 qq 22 ee 44 rr 33 ww 44 ; run; and you want output like this......... name total qq 22 ww 44 Do it by data set step.
Which function is used to count the number of intervals between two sas dates?
Explain proc univariate?
What are the special input delimiters used in SAS?
Can we use where and having clauses in a single SAS program. ex: proc sql; select a,b,c from test where state in 'KA' and having <some condition>. Is the above program run correctly, if not why ?
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
What is the order of application for output data set options, input data set options and SAS statements?
Does anybody has lastest SAS certification dumps,if anybody has please mail me at akshara_SAS@ymail.com Thanks Akshara
Describe the ways in which you can create a macro variable?
What is the pound sign used for the DATA _NULL_?