[code:59aca]/* Remove all the labels and formats */
proc datasets lib=work;
modify test; /* modify data set test */
attrib _all_ label=' '; /* will remove all labels */
attrib _all_ format=; /* will remove all formats */
run;
contents; /* view the contents after removal */
run;
quit;[/code:59aca]