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;
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.