LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (October 2007, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments: To: sas-l@uga.edu
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


Back to: Top of message | Previous page | Main SAS-L page