I need todays date in a macro variable like that.
Thanks!
I tried yymmdd8. but it came out like mmddyy8. (per chart below...)
%let todaysDate = %sysfunc(today(), yymmddn8.);
%put &todaysDate;
%let todaysDate = %sysfunc(today(), yymmddn8.);
%put &todaysDate;
You can also look into &SYSDATE which is an automatic macro variable. Depending on how you're submitting a job, this may or may not be helpful.
i was hoping for a solution of this variety (which doesn't work...)
After 5 years of sas work, I am still clueless on dates.....
data _null_;
format dt mmddyy10.;
dt= date();
call symput('dt',trim(left(input(dt,mmddyy10.)));
run;
%put &dt;
run;
Dates are numbers. To convert it to a character, use PUT with the format you'd like it to appear with.
Your solution was overcomplicated. Here's the simplified version, note I'm using CALL SYMPUTX() to create a global macro variable with no trailing spaces.
data _null_;
call symputx('dt',put(date(),mmddyy10.), 'g');
run;
%put &dt;
What format you have attached to the variable doesn't matter, in fact you do not even need to create a variable. You want to use PUT() function to convert a value to a character string not the INPUT() function. The INPUT() function is for converting character strings into stored values. It is easy to remember if you think of the PUT and INPUT statements that are used to write and read characters from text files.
You can use the DATE() function (or its alias today()) to get the date when the statement runs.
data _null_;
call symputx('dt',put(date(),yymmddn8.));
run;
or you can use the automatic macro variable SYSDATE9 to get the date when the program started (which might be yesterday or even earlier if you have a long runnning job).
data _null_;
call symputx('dt',put("&sysdate9"d,yymmddn8.));
run;
thanks, i used your first one.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.