Hi everyone ...
Does anyone know if it's possible to insert a user defined variable from a DATA statement in a TITLE statement?
For example
I've seen this used with system variables such as &SYSDAT9, &SYSDAY, but I cannot seem to get this to work.
Thanks ...
Does anyone know if it's possible to insert a user defined variable from a DATA statement in a TITLE statement?
For example
Code:
DATA TEMP;
VAR1 = TODAY() - 1;
RUN;
PROC PRINT;
TITLE1 'REPORT SUMMARIZING VAR1 DATA';
RUN;
I've seen this used with system variables such as &SYSDAT9, &SYSDAY, but I cannot seem to get this to work.
Thanks ...