How to convert .xls file into CSV format?
Answer Posted / khaja
proc import out=<datasetname>
datafile="path\file.xls"
dbms=excel replace;
sheet='sheetno$';
run;
proc export outfile=filepath data=<datasetname> dbms=csv
replace;
run;
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is a pdv and what are its functions?
Name validation tools used in SAS
Explain why double trailing @@ is used in input statement?
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming
Explain what is the use of proc gplot?
what is study design in while working with SAS? what are screening variables in SAS?
What is the sas data set? : sas-grid-administration
how to read the variables in sas? : Sas-administrator
Explain what is SAS informats?
do you need to know if there are any missing values? : Sas programming
How do you specify the number of iterations and specific condition within a single do loop?
What is maximum storage capability of SAS?
How is character variable converted into numeric variable and vice versa?
What is the difference between reading data from an external file and reading data from an existing data set?
what is hash files in sas and why we are using this one in sas?