Date: Mon, 8 Oct 2007 17:16:54 -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: <1191856039.951186.42010@22g2000hsm.googlegroups.com>
Content-Type: text/plain; charset="us-ascii"
Thanks Joep and Mark for your suggestions. Thanks to Randy, sent me a
simple solution, might help others too.
Data Race1;
set race;
HLO='M'; /* To tell SAS that it's a multilabel format */
Run;
Proc format cntlin=Race1;
Run;
Regards,
Nat
|