LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (December 2000, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Mon, 4 Dec 2000 12:53:19 -0500
Reply-To:   Gerhard Hellriegel <ghellrieg@T-ONLINE.DE>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Gerhard Hellriegel <ghellrieg@T-ONLINE.DE>
Subject:   Re: Data step: how to supress an existing label?

On Mon, 4 Dec 2000 12:10:50 -0500, Vincent Girard <v__girard@HOTMAIL.COM> wrote:

>Hello SAS-ler... >Albeit the http://www.listserv.uga.edu/archives/sas-l.html is exellent, I >could not find a ref on a simple data step to supress a variable label. I >tried <label=""> but SAS 6.12 froze (why?). Any suggestion? >Thanks..

I don't see, how you tried it, but the following seems to work:

data test; set sasuser.class; label sex=" "; run;


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