What statement do you code to tell SAS that it is to write
to an external file?
Answer Posted / sankar
using export procedure
syntax
in txt file: proc export data=datasetname dbms=dlm
outfile='path';
delimiter='specific delimiter';
run;
in excelfile: proc export data=datasetname dbms=excel200
outfile='path'
sheet='sheetname';
run;
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
explain the concepts and capabilities of business object? : Sas-bi
What are the scrubbing procedures in sas?
What is the SAS data set?
in the flow of data step processing, what is the first action in a typical data step? : Sas programming
Mention sas system options to debug sas macros.
Which statement does not perform automatic conversions in comparisons?
Give e an example of..
Tell me more about the parameters in macro? : sas-macro
What is slibref?
what is data governance? : Sas-di
what is sas and what are the functions? : Sas-administrator
what is the difference between floor and ceil functions in sas? : Sas-administrator
what is proc Index? and what is proc document?
Describe the ways in which you can create macro variables? : sas-macro
How you can read the variables that you need?