OR try ODS.
ods csv file='c:\temp\x.csv' ;
proc print data=x noobs;run;
ods csv close;
It is not working.
Another workaround.
data testit;
x='00023';_x=cats(x,'09'x);
y=00098;
format y z5.;
run;
proc export data=testit outfile="c:\temp\country.csv" dbms=csv replace;
run;
Xia Keshan
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.