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 (August 2011, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 18 Aug 2011 13:54:55 -0400
Reply-To:     Arthur Tabachneck <art297@ROGERS.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Arthur Tabachneck <art297@ROGERS.COM>
Subject:      Is there a way to create variable containing the pdv?

Suppose you had the following program:

data test(keep=a y z); input a b c x y; z=y+5; cards; 1 2 3 4 5 ;

Is there a way, from within the datastep, to create a variable that contains the names of all of the variables that are in the pdv. Thus, in the above example, say a variable called variables that would have the value: "a b c x y z"? And, similarly, create another variable that has the names of the variables in the keep statement (i.e., in this case, a variable called kept with the value "a y z")?

Thanks in advance, Art


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