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.
|