BookmarkSubscribeRSS Feed
jack1078
Calcite | Level 5

Hi all,

I have a problem to import an excel file with xls = dbms.

I have a datetime field format var1 "03/11/2015 10:04:04" with two space between the date and time. When I import the file I truncates the field by putting only the date. How can I import the field as described above?

thank's a lot

bie bie

PROC IMPORT OUT= WORK.OFFERTE_EB

            DATAFILE= "my path"

            DBMS=xls REPLACE ;

  GETNAMES=yes;

RUN;

3 REPLIES 3
ballardw
Super User

When automatic conversions from Excel fail (moderately often due to Excel users) one solution is often to save the Excel to another format such as CSV an import that file as you can modify the code generated by a proc import call to use custom formats or provide more complicated parsing.

jack1078
Calcite | Level 5

I can not change the file format should I use excel and I can not change the format of the field excel

Reeza
Super User

Can you access the file via the libname method?

Look into DBASTYPE option, as well as scandate, scantime options.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1510 views
  • 0 likes
  • 3 in conversation