Dear All,
How to convert the below datetime format from character to numeric and vice-versa ?
2021-03-04T08:34
Thanks
SAS provides the E8601 informats/formats for this:
data test;
numdt = input("2021-03-04T08:34",e8601dt16.);
format numdt e8601dt16.;
run;
SAS provides the E8601 informats/formats for this:
data test;
numdt = input("2021-03-04T08:34",e8601dt16.);
format numdt e8601dt16.;
run;
Thank you sooo much !!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.