name some data transformation used in sas di? : Sas-di
No Answer is Posted For this Question
Be the First to Post Answer
Briefly describe 5 ways to do a "table lookup" in sas.
What is the difference between SAS functions and procedures?
What is the Program Data Vector (PDV) and What are its functions?
Do you think professionally?
How we can create SAS USER DEFINED CODE?
what are input dataset and output dataset options? : Sas programming
How to sort in descending order?
how to display duplicated observations in a data using base sas.
13 Answers HCL, TCS,
How to convert .xls file into CSV format?
What is slibref?
how does sas handle missing values in an update? : Sas programming
The below code we are using for creating more than one macro variables in proc sql using into clause. How we can use same code to create macro variables vara, varb, varc instead of var1, var2, var3.? proc sql noprint; select count(distinct(patient)) into :var1 - :var3 from dataset1 group by trtreg1c ; quit;