Date: Tue, 19 Feb 2002 14:00:34 -0600
Reply-To: Lei Xu <lxu@AUDIENCEID.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Lei Xu <lxu@AUDIENCEID.COM>
Subject: Re: Using ODS write excel file - system problem?
Content-Type: multipart/alternative;
First, please read this example codes:
filename out 'c:\myfile.xls';
ods html body=out style=minimal;
proc print data=temp; run;
ods html close;
This codes worked fine on my machine when 'myfile.xls' is directed to my
local drive.
But if I try to direct it to a network drive, I would get error message
like 'file can not be accessed', 'read-only location', etc. However if I
change the file extension to .html instead of .xls, everything worked OK
again. I suspect it might be something with my network system. But I'm
not a network expert. Any suggestions?
Thank you in advance!
Lei
[text/html]
|