what is intially documentation for a sas programmer?
Answers were Sorted based on User's Feedback
What are the different types of sas functions?
what is the main difference between rename and label? (don't say that they both perform the same function).
What is the significance of the ‘OF’ in X=SUM (OF a1-a4, a6, a9);?
what are validation tools that are used in sas? : Sas-administrator
What is your weekness? I am confuse what to say about this question. so can u give some answer which can be yur strenght.
how to assign a macro value to a variable?
How the Excel file enter into the SAS environment without Code of Infile & Import procs,if i have no file Conversion?
if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming
is QUALCOMM using SAS ?
What does a PROC TRANSPOSE do?
which date functions advances a date time or date/time value by a given interval? : Sas programming
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.