I have a simple data step to export a data set to a text file.
DATA _NULL_ ;
FILE "filename" DSD DLM='~' ;
SET table;
PUT (_ALL_)(:) ;
RUN;
However, I need to change the format of all date variables. Is there any way to do this other than formatting each variable? I have a hundred or so tables, each with many date variables.
Thanks,
Chris
Christopher Johnson
www.codeitmagazine.com