Hi all,
I have character dates as in below format , is there any way I can convert to numeric. I tried using date11. but didn't work.
data test;
test_date1 = "16 June 2023";
converted1 = input(test_date1, date11.);
format converted1 date9.;
put test_date1= converted1=;
run;
Thanks
data have;
test_date1="16 June 2023";
run;
data want;
set have;
num_test_date1=input(test_date1,anydtdte32.);
format num_test_date1 date9.;
run;
data have;
test_date1="16 June 2023";
run;
data want;
set have;
num_test_date1=input(test_date1,anydtdte32.);
format num_test_date1 date9.;
run;
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.