Date: Mon, 29 Sep 2008 09:11:05 -0500
Reply-To: Joe Matise <snoopy369@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Joe Matise <snoopy369@GMAIL.COM>
Subject: Re: Exporting Sas file to a csv extension file
In-Reply-To: <200809281800.m8SAnBro021795@malibu.cc.uga.edu>
Content-Type: text/plain; charset=ISO-8859-1
Remember also that with pretty much any proc export, you can always use the
export wizard to generate code for you, and then have it paste the code to
the log so you can re-use it yourself later, if you're having trouble with
export code (or import).
-Joe
On Sun, Sep 28, 2008 at 1:00 PM, Randy <randistan69@hotmail.com> wrote:
> I have to convert a sas data file to a csv format file
> My code is
>
> proc export data = Datahave;
> outfile = 'C:\dataneed.csv' ;
> run;
>
> The log gives me an error message
> ERROR: FILE= or TABLE= is required and must be specified.
>
> What is the mistake that I am making?
>
|