|
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;
|