What is the difference between %local and %global? : sas-macro
No Answer is Posted For this Question
Be the First to Post Answer
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 difference between SET and MERGE?
How would you remove a format that has been permanently associated with a variable? ________________
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.
How many versions came upto now in SAS?
Explain what Proc glm does?
what is fact table and factless table?
Hi,by usining ptf how we have to combine (likr merge)10 datasets at a time in the oracle database(and write a macro code also)?Like this i have a douts a lot if you dont mind may please send one text mail for me(madhusudhanap16@gmail.com)?
What is the role of sas grid administrator? : sas-grid-administration
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?
Name few SAS functions?
how can u join the two tables without using proc sql Joins and nested queries ?