| Date: | Mon, 22 Jun 2009 09:56:50 -0400 |
| Reply-To: | Nathaniel.Wooding@DOM.COM |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Nat Wooding <Nathaniel.Wooding@DOM.COM> |
| Subject: | Re: Delete a window file |
| In-Reply-To: | <c7bbfc16-678d-4646-be20-b5ca3c76c494@j12g2000vbl.googlegroups.com> |
| Content-Type: | text/plain; charset="US-ASCII" |
|---|
CALL SYSTEM('DEL &SrcPopCnt.');
should not work since the &SrcPopCnt. will not be resolved. Try replacing
the single quotes with double quotes.
Nat Wooding
Environmental Specialist III
Dominion, Environmental Biology
4111 Castlewood Rd
Richmond, VA 23234
Phone:804-271-5313, Fax: 804-271-2977
Cel Phone: 804-205-0752
ash007
<RamsamyAshley@GM
AIL.COM> To
Sent by: "SAS(r) SAS-L@LISTSERV.UGA.EDU
Discussion" cc
<SAS-L@LISTSERV.U
GA.EDU> Subject
Re: Delete a window file
06/22/2009 09:44
AM
Please respond to
ash007
<RamsamyAshley@GM
AIL.COM>
with this :
%let SrcPopCnt = %quote("C:\Users\Ash_Rmy\Documents\EG_MFILE.sas");
%put &SrcPopCnt;
OPTIONS NOXWAIT;
DATA _NULL_;
CALL SYSTEM('DEL &SrcPopCnt.');
RUN;
It doesn't work...
CONFIDENTIALITY NOTICE: This electronic message contains
information which may be legally confidential and or privileged and
does not in any case represent a firm ENERGY COMMODITY bid or offer
relating thereto which binds the sender without an additional
express written confirmation to that effect. The information is
intended solely for the individual or entity named above and access
by anyone else is unauthorized. If you are not the intended
recipient, any disclosure, copying, distribution, or use of the
contents of this information is prohibited and may be unlawful. If
you have received this electronic transmission in error, please
reply immediately to the sender that you have received the message
in error, and delete it. Thank you.
|