What is the difference between the proc sql and data step?
No Answer is Posted For this Question
Be the First to Post Answer
where to use sas business intelligence? : Sas-bi
Name validation tools used in SAS
What is the pound sign used for the DATA _NULL_?
for report generation which one you used proc report or data_null_?
3 Answers Accenture, Quintiles,
How did you use the round function?give an example(don't say it will round to the nearest intger) eg1:round(84.55,.1) =84.6 eg2:round(92.64,.1)=92.6,How it is happening like this tell me the logic,that is how the round function works when we have deimal values?
if a program has some 1000 or more line and how to know whether the syntax of the particular code is correct without checking it manually
Best trainer in hyderabad for sas banking.if any one have details pls provide contact details.
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
how do you pull data from equifax?tell me the process?
0 Answers Synchrony Financial,
What are the table names in oracle database...?
How would you delete observations with duplicate keys?
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;