I have a date format like below example. If i want to convert in MMDDYY10. Using DATEPART function it is not working
date='March 29, 2019 5:00:00 AM GMT+01:00';
Do we have any alternate way to convert character date to date format?
Please try the below code
data have; date='March 29, 2019 5:00:00 AM GMT+01:00'; newdate=datepart(input(scan(date,1,'G'),anydtdtm.)); format newdate mmddyy10.; run;
View solution in original post
Yes , you are right
thank you for your quick response.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Save the date!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.