How to convert .xls file into CSV format?
Answer Posted / krishna
proc import datafile=file.xls out=<datasetname> dbms=excel
replace;
sheet='sheetno$';
run;
proc export outfile=filepath data=<datasetname> dbms=csv
replace;
run;
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
Mention common programming errors committed in sas ?
what are _numeric_ and _character_ and what do they do? : Sas programming
explain about various caches available in data integrator? : Sas-di
Mention sas system options to debug sas macros.
Why double trailing @@ is used in input statement?
Differentiate between format and informat? : sas-grid-administration
what are the component of range? : Sas-bi
How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?
explain about sas business intelligence? : Sas-bi
What are the features of base sas system?
What is the difference between where and if statement?
what is hierarchy flattening? : Sas-di
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
what is the difference between nodup and nodupkey options? : Sas programming