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
how can you create zero observation dataset? : Sas programming
Differentiate input and infile.
Give e an example of..
describe the interaction table in sas di? : Sas-di
what versions of sas have you used (on which platforms)? : Sas programming
Describe a time when you were really stuck on a problem and how you solved it?
what are 5 ways to perform a table lookup in sas? : Sas-administrator
what are sas bi dashboard components? : Sas-bi
Which function is used to count the number of intervals between two sas dates?
how does sas handle missing values in formats? : Sas programming
What is a method to debug and test your SAS program?
what is hierarchy flattening? : Sas-di
What is the work of tranwrd function?
What are the difference between ceil and floor functions in sas?
why is sas considered self-documenting? : Sas programming