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
What is the difference between match merge and one to one merge?
What is a macro routine?
Explain the purpose of retain statement.
what is sas application server? : Sas-di
how does sas handle missing values in formats? : Sas programming
how do you want missing values handled? : Sas programming
What are the applications primarily used by business analyst? : Sas-bi
what is the Population you used in your project, is it ITT or PP?
Did you used proc test? when?
what can you learn from the sas log when debugging? : Sas programming
What is the difference between order and group variable in proc report?
What is your favorite all time computer book? Why?
Differentiate between ceil and floor functions.
What do you know about sas data set?
What system options would you use to help debug a macro? : sas-macro