Hi...
Try this Proc Report code. There may be non-code methods in EG, but I don't work with exporting in EG enough to know them.
cynthia [pre]
*** the code;
ods csv file='c:\temp\nohd.csv';
  proc report data=sashelp.class noheader nowd;
    column name age height;
    define name/display;
    define age /display;
    define height/display;
  run;
ods csv close;
[/pre]