Hello Experts,
I would like to get the year 2020 in macro varaible "annee" but my code doesn't work:
%let annee=%sysevalf(year(%sysevalf(today()));
Thank you for your help!
Best regards
%SYSEVALF is for doing non-integer calculations in macro.
To call data step functions in macro language, you need %SYSFUNC.
%SYSEVALF is for doing non-integer calculations in macro.
To call data step functions in macro language, you need %SYSFUNC.
%let annee=%sysfunc(today(),year4.);
%put annee=&annee ;
Try this code:-
/*method1*/
data _null_;
call symputx('annee',put(intnx('year',today(),0),year4.));
run;
%put &annee;
/*method2*/
%let annee=%sysfunc(today(),year4.);
%put &annee;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.