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
What is slibref?
What is the difference between the proc sql and data step?
How do you convert basic cube to transaction cube and transaction cube to basic cube?
How to limit decimal places for variable using proc means?
What is the general format of function in sas? : sas-grid-administration
What is the difference between using drop = data set option in data statement and set statement?
how does sas handle missing values in sort order? : Sas programming
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
Are you involved in writing the inferential analysis plan? Tables specfications?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
What is the use of %include statement?
What are the difficulties u faced while doing vital signs table or dataset?
what is the purpose of _error_? : Sas programming
Have you used macros? For what purpose you have used? : sas-macro
How would you define the end of a macro?