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 (January 2006, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 26 Jan 2006 19:15:44 -0500
Reply-To:     SUBSCRIBE SAS-L Peter Yeltzin <peter98@INTERNODE.ON.NET>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         SUBSCRIBE SAS-L Peter Yeltzin <peter98@INTERNODE.ON.NET>
Subject:      Re: Histogram in IML

With a little playing around i realised this works

data match; length name $20; if _N_=1 then do; declare hash hh(dataset: "work.small"); rc = hh.defineKey('name'); rc = hh.defineDone(); end; set big; rc = hh.find(); if (rc NE 0) then output; run;


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