If you’re not wanting any SAS output from a data step, how
would you code the data statement to prevent SAS from
producing a set?
Answers were Sorted based on User's Feedback
Answer / thanwi
using _null_ in data statement
data _null_;
--
--
--
run;
| Is This Answer Correct ? | 26 Yes | 0 No |
Answer / learner
QUESTIONS IS NOT CLEAR ...WANT THE OUTPUT BUT NOT IN THE
FORM OF SAS DATA SET ...
SO USE IN PLACE OF DATASET NAME _NULL_
RATNA...DONT GIVE ...IF YOU DONT KNOW THE ANSWER..PLS
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / prateek
I think one should not be stopped from giving answeres, the
reader should apply his/her knowledge also.
Anyways the DATA _NULL_; statement is the correct answere.
| Is This Answer Correct ? | 3 Yes | 2 No |
What is slibref?
what is sas application server? : Sas-di
if reading an external file to produce an external file, what is the shortcut to write that record without coding every single variable on the record
Have you used macros? For what purpose you have used? : sas-macro
What is the difference Using & and && in the macro variables
Explain the main difference between the sas procedures and functions? : Sas-administrator
What do the PUT and INPUT functions do?
What is LOGICAL VARIABLES in SAS.And how it can be used..Can anyone support..???
How we will Developing new reports Using Data step programming and Macros ?
what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;
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?