Hi,
Can anyone tell me what is the fastest way to programmatically convert a SAS dataset into a CSV file. I know I can use a data step and output to a file etc. But is that the only way?
Thanks, Adnan.
Hi,
Can anyone tell me what is the fastest way to programmatically convert a SAS dataset into a CSV file. I know I can use a data step and output to a file etc. But is that the only way?
Thanks, Adnan.
something along these lines?
proc export data=sashelp.class
outfile='c:\temp\sashelp class.csv'
dbms=csv
replace;
run;
5 different ways to create .CSV file of a SAS dataset.
refer http://studysas.blogspot.com/2009/02/how-to-create-comma-separated-file-csv.html
sarath