What statement do you code to tell SAS that it is to write
to an external file?

Answer Posted / jothi sankar

_NULL_ statemnet.


Eg:

DATA
_NULL_;
SET MYDATA;
FILE '<FILE-LOCATION>';
PUT var1 var2 var3 ... varn;
RUN;

Is This Answer Correct ?    12 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the difference between nodup and nodupkey options?

794


Name few SAS functions?

875


what does the run statement do? : Sas programming

774


What is a put statement?

920


Why and when do you use proc sql?

967


what is hierarchy flattening? : Sas-di

829


In sas, what are the areas that you are most interested in? : sas-grid-administration

833


If a variable contains only numbers, can it be a character data type?

845


What is the general format of function in sas? : sas-grid-administration

770


What is the difference between using drop = data set option in data statement and set statement?

893


What is substr function?

868


if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...

1150


What is PDV?

919


For what purposes have you used sas macros? : sas-macro

763


Tell me more about the parameters in macro? : sas-macro

812