Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
data _null_;
x = put(time(),time5.);
put x=;
run;
%LET TIMENOW=%SYSFUNC(putn(%sysfunc(time()),time5.));
%LET TIMENOW=%sysfunc(compress(%SYSFUNC(putn(%sysfunc(time()),time5.)),':'));
options macrogen symbolgen;
%let DateStamp = %sysfunc(putn(%sysfunc(date()),yymmdd10.))_%sysfunc(compress(%sysfunc(putn(%sysfunc(time()),time8.)),:));
%let OutFileName = C:\CLIENTS\Myfolder\DailyReport.&DateStamp..pdf;
filename Myout "&OutFileName";
data temp;
set mydata;
file Myout;
*** more datasteps **;
run;