Special cases
proc print data=work.temp maxdec=2;
run;
1.Cant perform operations with lables.
proc print data=work.test;
label salary='annual salary`;
run;
proc print data=work.test;
label salary=`annual salary`;
rating=`new rating`;
run;
proc print data=work.test;
label x=`new x`;
run;
proc print data=work.test;
var x;
run;
This will throw an error as you can not print or operate on labels. They are only for display.
options ps=10;
options ls=10;
options ps=10;
options ls=10;
proc print data=work.test;
run;