*
/*
Subject:      Re: variable filenames
From:         Paul Rutz 
Date:         1997/06/05
Newsgroups:   comp.soft-sys.sas

Another way to put today's date into a filename:  */

filename today "%sysfunc (today(), yymmdd6.).dat";

data _null_;
  file today;
  put "This is a test";
run;
*
;