How experienced are you with customized reporting and use
of Data _Null_ features?
Answers were Sorted based on User's Feedback
Answer / ujas patel
_Null_ is usefull only When u want to use Datastep without
actually creating a SAS dataset.A set statement specifies
the SAS dataset that you want to read from.
Data _null;
Set Clinic.stress;
Is This Answer Correct ? | 6 Yes | 2 No |
Answer / ganesh
This is used for when you dont want any output and u want
to save your time i will not gives u results but the
message can be displayed inthe log.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sunny
Data _null_ is also used to produce complex reports which cannot be customized in proc report.Proc doesnt allow us to use if statements where in data null we can use if statements to get the desired output.For example if you want multiple sub totals or if you want to print footnote only at the end of a page break.This is useful specially for pdf reports.
Is This Answer Correct ? | 2 Yes | 2 No |
what is the difference between sas and other datawarehousing languages?what are the advantages of sas over them?
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
i have a dataset with 25 obs; 10th obs has like ramu,anji,ramu,azad,ramu like this. i want to know how many times the word repeats in that obs?
what is PhaseIII, ODS, TLG, Macro and Proc in SAS
If you have a data set that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variable?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
name several ways to achieve efficiency in your program? : Sas programming
what is portability of sas programmes?
how to perform paired t-test using Base/SAS & SAS/Stat?
What is the Program Data Vector (PDV) and What are its functions?
How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?
Explain the message ‘MERGE HAS ONE OR MORE DATASETS WITH REPEATS OF BY VARIABLE’.