Date: Tue, 9 Jun 2009 13:25:38 -0400
Reply-To: George Joseph <gjman@HOTMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: George Joseph <gjman@HOTMAIL.COM>
Subject: Re: MACRO not working for "00" to "98"
It did not make a difference the 00-98 tokens are still tripping.
-G
On Tue, 9 Jun 2009 13:17:55 -0400, Gerhard Hellriegel
<gerhard.hellriegel@T-ONLINE.DE> wrote:
>don't know what your macro should do, but all your compare operations are
>wrong:
>
>%if &cy="00" %then %do;
>
>has to be
>
>%if &cy=00 %then %do;
>
>Gerhard
|