How to reads the date time fields like 3/5/2017 12:00:00 AM from CSV file.?
Thanks in advance
Are you looking for something like
data input;
format date datetime.;
input date mdyampm21.2;
datalines;
3/5/2017 12:00:00 AM
;
run;
Thanks very much.
But i have used MDYAMPM. and it seemed to work fine.
I would like to understand what is the difference between mdyampm21.2; & MDYAMPM.
Am i missing something here?
Thanks again.
It will depend on your format, as there are many ways to write date, time etc with or without different details..
Have a look at http://support.sas.com/documentation/cdl/en/leforinforref/64790/HTML/default/viewer.htm#p0unvzltcs19...
default if MDYAMPM19.
data input;
format date datetime.;
input date anydtdtm32.;
datalines;
3/5/2017 12:00:00 AM
;
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!
Get started using SAS Studio to write, run and debug your SAS programs.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.