Usage Note 23652: How can I create a CSV file with ODS?
The ODS CSV and ODS CSVALL destinations can be used to generate files with comma separated values.
The CSVALL destination includes titles, footnotes, notes, and BY lines.
ods csv file="ODS_CSV.csv";
proc print data=sashelp.class;
title "&sysver";
footnote "&sysdate";
run;
ods csv close;
ods csvall file="ODS_CSVALL.csv";
proc print data=sashelp.class;
title "&sysver";
footnote "&sysdate";
run;
ods csvall close;
Operating System and Release Information
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Type: | Usage Note |
Priority: | low |
Topic: | SAS Reference ==> ODS (Output Delivery System)
|
Date Modified: | 2004-01-12 15:45:14 |
Date Created: | 2004-01-09 15:05:35 |