Using current date (TODAY() as macro variable entry for naming a dataset (scripting)
I would like to use TODAY() to derive the current date and use it as a timestamp in naming a JMP dataset, and as a TIME_STAMP column as well. In SAS, it may look like this (I admit I neglected the formatting a bit). %let TODAYDATE=today(); data WORK.CLASS_&TODAYDATE. ; set SASHELP.CLASS; TIME_STAMP = &TODAYDATE. ; run ; After resolving, the result should look like this : "WORK.CLASS_20190628"...