Date: Mon, 8 Oct 2007 17:01:07 -0000
Reply-To: Nat <venkateshnt@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Nat <venkateshnt@GMAIL.COM>
Organization: http://groups.google.com
Subject: Re: Create formats from SAS dataset, which has overlapping values
In-Reply-To: <1191860292.009045.122740@o3g2000hsb.googlegroups.com>
Content-Type: text/plain; charset="us-ascii"
Hi Joep,
It works fine if I make some code changes.
data _null_;
set race end = last;
file 'yourprog.sas';
if _n_ eq 1 then do;
put 'proc format;';
put 'value universl(multilabel)'; /*Include a parentheses */
end;
put start '=' '' label ''; /* Include quotes for the label */
if last then do;
put ';';
put 'run;';
run;
Thanks for the suggestions.
Regards,
Nat
|