BookmarkSubscribeRSS Feed
alepage
Barite | Level 11

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;

3 REPLIES 3
art297
Opal | Level 21

I think you are looking for:

%let date1='01jan2017'd;
%let date2=%sysevalf(&date1);

%put &date2;

Art, CEO, AnalystFinder.com

 

alepage
Barite | Level 11

Good morning,

 

It is exactly what I was looking for.  

Thanks a lot for your help.

 

Alain

Ksharp
Super User
%let date1=01jan2017;
%let num=%sysfunc(inputn(&date1,date9.));
%put &num ;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Creating Custom Steps in SAS Studio

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1307 views
  • 5 likes
  • 3 in conversation