Date: Wed, 20 Jun 2007 09:30:44 -0400
Reply-To: Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Subject: Re: Problem with ODS CSV
Content-Type: text/plain; charset=ISO-8859-1
Don't know wether that does anything:
What about options nonumber; and a empty TITLE; statement? Maybe SAS
removes that default things, but leaves the blank lines instead?
Ok, might be also a 8.2 "feature", but try it out!
Gerhard
On Wed, 20 Jun 2007 10:02:42 +0200, Robert Bardos <bardos2@ANSYS.CH> wrote:
>> -----Urspruengliche Nachricht-----
>> Fran篩s
>> 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篩s?
>
>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
|