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 do the put and input function do?
Explain the difference between using drop = data set option in set and data statement?
explain what is data set in sas? : Sas-administrator
How can I remove header from output data set?
Name statements that are execution only.
what are some good sas programming practices for processing very large data sets? : Sas programming
One way of creating a new variable in Macros is by % Let....What is the other way..?
I have 50 variables in one data set, In reports i want to generate every 10 variables in one page how we will write code in proc report.
What is the difference between SAS Data step and SAS PROC SQL, and which is better?
What commands are used in the case of including or excluding any specific variables in the data set?
What is PDV?
What is by-group processing?