Date: Fri, 16 Mar 2001 08:10:52 -0800
Reply-To: maxsfolks <maxsfolks@EMAIL.MSN.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: maxsfolks <maxsfolks@EMAIL.MSN.COM>
Subject: Re: keep = variable list
Oops. This part of my example will put a semicolon after each variable name
which will cause the keep statment to fail.
> /* now construct the list of variable names that end in zero */
> /* and don't forget to add the semicolon in quotes. */
>
> put name||";" ;
>
> run;
It should be more like this...
put name;
if count=[whatever the max count is];
then do;
put "; run;";
end;
Best wishes,
Bill McKirgan,
Data Manager
Biostatistical Core Unit
Iowa Mental Health Clinical Research Center
|