LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (April 2007, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 18 Apr 2007 14:49:45 -0700
Reply-To:     Sasi <pl.sasikumar@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Sasi <pl.sasikumar@GMAIL.COM>
Organization: http://groups.google.com
Subject:      Re: Dups and date - urgent
Comments: To: sas-l@uga.edu
In-Reply-To:  <1176932522.324991.189670@n76g2000hsh.googlegroups.com>
Content-Type: text/plain; charset="iso-8859-1"

Hi,

Try this..

proc sort data = have out = need; by F1 F2 F3 date; run;

data need; set need; by F1 F2 F3 date; if first.F3; run;

Regards, Sasikumar, Quartesian.


Back to: Top of message | Previous page | Main SAS-L page