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:         Mon, 23 Jan 2006 00:27:42 -0500
Reply-To:     Kijoeng Nam <kijoeng@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Kijoeng Nam <kijoeng@GMAIL.COM>
Subject:      MACRO expression? (SAS program help)
Content-Type: text/plain; charset=ISO-8859-1

How can I express following program using Macro?

data KKDglm (keep = ParticipantID F3_KKD F2_KKD F1_KKD BKKD standard AA ) KKDmixed(keep = ParticipantID standard AA time KKD) ; set a;

output KKDglm; KKD = BKKD; time = 0; output KKDmixed; KKD = F1_KKD; time = 8; output KKDmixed; KKD = F2_KKD; time = 20; output KKDmixed; KKD = F3_KKD; time = 32; output KKDmixed; run;

Thanks in advance.


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