Hello,
I would like to transform a date into numerical value
Here's my code
%let date1='01jan2017'd;
%let date2=%sysfunc(????(&date1),????);
%put &date2;
&date2=20820;
I think you are looking for:
%let date1='01jan2017'd; %let date2=%sysevalf(&date1); %put &date2;
Art, CEO, AnalystFinder.com
Good morning,
It is exactly what I was looking for.
Thanks a lot for your help.
Alain
%let date1=01jan2017;
%let num=%sysfunc(inputn(&date1,date9.));
%put &num ;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.