Hi All,
I have a problem that I have research many different ways. I'm trying to import an excel spreadsheet that contains a date field that is customized as such 1/14/2018 10:43:00 AM which is the variable 'e' below. I imported the data using a libname, an import proc and also added options to the import with no success . The problem is as follows
Here's the code.
data fix;
set sr222;
x=e;
dt1 = dhms(x,0,0,0);
format dt1 datetime20.:
run:
It converts that variable okay but SAS is adding to the date. For example:
incoming date = 1/5/2018 3:10:00 PM
conversion date = 06JAN2078:15:10:00
can anybody please help
if i understand you correctly, your x , e are datetime values and not date values, you perhaps need to do
data fix;
set sr222;
x=e;
dt1 = dhms(datepart(x),0,0,0);
format dt1 datetime20.:
run:
if i understand you correctly, your x , e are datetime values and not date values, you perhaps need to do
data fix;
set sr222;
x=e;
dt1 = dhms(datepart(x),0,0,0);
format dt1 datetime20.:
run:
The difference between what you have coming in, and what you're getting, is simply the difference between SAS datetimes and Excel datetimes. One represents the number of seconds since Jan 1, 1900, while the other (SAS) represents the number of seconds since Jan 1, 1960.
To convert the datetimes you can use code like:
data fix;
set sr222;
dt1 = e-21916*86400;
format dt1 datetime20.:
run:
Art, CEO, AnalystFinder.com
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.