Date: Tue, 27 Sep 2005 19:33:59 -0400
Reply-To: David Weng <davidweng@gmail.com>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: David Weng <davidweng@GMAIL.COM>
Subject: beginner need help...
Content-Type: text/plain; charset=ISO-8859-1
Hi All,
I know this question may be silly, however I really can not walk out.
The code as below, if I have year with 19xx, the data can't be input.
thanks
data one;
infile cards missover truncover;
input name :&$20. age BOD mmddyy10.;
format BOD date9.;
title "append test";
cards;
shawn 34 12-04-1973
david richard 36 06-18-69
fred zarric 43 04-06-62
;
run;
|