Date: Tue, 27 Jan 2009 21:48:17 -0500
Reply-To: Arthur Tabachneck <art297@NETSCAPE.NET>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Arthur Tabachneck <art297@NETSCAPE.NET>
Subject: Re: Proc Export LIBNAME error?
Aims,
Try it with DBMS=xls and let the list know it that worked.
Art
-------
On Tue, 27 Jan 2009 12:32:40 -0800, aims1211@GMAIL.COM wrote:
>Hi All,
>
>I've been unable to use Proc Export for a few weeks (coincidentally
>the problem came up after running a Disk Cleanup on my PC). Here's a
>sample of my code:
>
>proc logistic data = temp descending;
> model RC_FS = var1 var2 var3;
> title 'RC_FS';
> ods output ParameterEstimates=Estimates;
>run;
>proc export data=Estimates
> outfile='C:\Temp\SAS_Export\Table5\Estimates.xls'
> dbms=excel replace;
>run;
>
>I get the following error message:
>ERROR: Connect: []
>ERROR: Error in the LIBNAME statement.
>Connection Failed. See log for details.
>NOTE: The SAS System stopped processing this step because of errors.
>
>Can't figure out what the issue is. Any help would be appreciated!
>
>Thanks!
>-A
|