| Date: | Fri, 24 Sep 2010 06:32:15 -0400 |
| Reply-To: | Nat Wooding <nathani@VERIZON.NET> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Nat Wooding <nathani@VERIZON.NET> |
| Subject: | Re: the end of the cards |
| In-Reply-To: | <000501cb5ba4$b3223a00$1966ae00$@com> |
| Content-Type: | text/plain; charset="us-ascii" |
Not that I am aware of. You can write an Infile statement with cards or
datalines as the reference but, alas, and End= is not allowed as shown
below.
Nat Wooding
787 infile cards end=eof;
WARNING: The value of the INFILE END= option cannot be set for CARDS or
DATALINES input.
788 if eof then LastCard = 'Yes';
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
bbser2009
Sent: Friday, September 24, 2010 12:55 AM
To: SAS-L@LISTSERV.UGA.EDU
Subject: the end of the cards
Hi there,
I am wondering if there is an option or something which indicates that the
end of cards has been reached?
Just like the end option in an infile statement.
Thanks, Max
|