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 are the default statistics that proc means produce?
How necessary is it to be creative in your work?
what is operational data and operational system? : Sas-di
what is the use of proc contents and proc print in sas? : Sas-administrator
How would you define the end of a macro?
Name types of category in which SAS Informats are placed?
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
What are the table names in oracle database...?
Describe crosslist option in tables statement?
what is transformation in sas data integration? : Sas-di
how would you determine the number of missing or nonmissing values in computations? : Sas programming
explain the concepts and capabilities of business object? : Sas-bi
What are the features of SAS?
Are you sensitive to code walk-throughs peer review or QC review?
What is the difference between where and if statement?