The easiest way to remove formats from variables in a data set is to use proc datasets.
Assuming I have a data set named Responses with some variables that have formats applied to them that no longer exist.
proc datasets library = myLibrary memtype=data;
modify responses;
attrib _all_ format=;
run;
quit;
Can't you just
ReplyDeleteoptions nofmterr;
?
Yes, options nofmterr will work also. I forgot about it. Thanks for the reminder! -s
ReplyDeleteHow to to do data cleansing ???
ReplyDelete