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 (June 2006, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 29 Jun 2006 01:41:42 -0700
Reply-To:     Eric Hoogenboom <erichoogenboom@YAHOO.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Eric Hoogenboom <erichoogenboom@YAHOO.COM>
Organization: http://groups.google.com
Subject:      Re: Selecting intersection variables
Comments: To: sas-l@uga.edu
Content-Type: text/plain; charset="iso-8859-1"

Isabelle,

If you want to use the code on existing datasets use the SET statement to read from an existing dataset and copy the ARRAY / DO loop part.

data new; set existing; array a_col .. ; do over a_col; ... end; run;

Hth, Eric

(snip)

... in this cas i need to adapt the code so it can deal with SAS datasets that already exist in a SAS library.

(snip)


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