Date: Wed, 20 Jun 2007 10:02:42 +0200
Reply-To: SAS-L List <sas-l@listserv.uga.edu>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Robert Bardos <bardos2@ANSYS.CH>
Subject: Re: Problem with ODS CSV
In-Reply-To: <4678298e$0$5066$ba4acef3@news.orange.fr>
Content-Type: text/plain; charset="iso-8859-1"
> -----Urspruengliche Nachricht-----
> François
> Gesendet: Dienstag, 19. Juni 2007 21:06
>
> Hi all,
>
> I am using ODS CSV with proc print (Sas 8.2) to create
> CSV files with the labels as names of columns.
>
> Each file has two empty lines at the beginning.
>
> Does anybody know how to avoid those two first lines ?
>
Can you give us some sample code, François?
I tried
ods listing close;
ods csv body='c:\temp\sasl_print.txt';
proc print data=sashelp.class;
run;
ods csv close;
ods listing;
and didn't get those empty lines.
(Tested with SAS 9.1.3 on a Win2k machine)
Robert
|