How to write a note to the log without involving data step compiler or macro processor?
%put I am crazy; /*% is a macro token , so not allowed*/
data _null_;
put 'I am crazy'; /*executed by data step compiler , so not allowed*/
run;
Any ODS possibility?
If you can rely on the fact that a global statement is echoed to the log:
SYSECHO "Here is my SAS log note.";
If you can rely on the fact that a global statement is echoed to the log:
SYSECHO "Here is my SAS log note.";
WOW!!! That's incredible.Jeez!!!!! That's not fair to even think along those lines to post a brilliant solution,
Thank you * 1e6. However very jealous and accepted.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.