BookmarkSubscribeRSS Feed
deleted_user
Not applicable
I have had some success in importing .csv file (AUG 5) in SAS using this code

proc import datafile="D:\Data\Desktop\AUG 5.csv"
out=mydata
dbms=dlm
replace;
run;
proc print data=mydata;
run;

I'm not having any success when I convert the same file AUG 5 in Excel format (AUG 5.xls) and try to import it.

proc import datafile="D:\Data\Desktop\AUG 5.xls"
out=mydata
dbms=dlm
replace;
run;
proc print data=mydata;
run;

I keep getting an error msg 'File WORK.MYDATA.DATA does not exist !
Is my coding wrong, Please help with the correct code for excel.
Jay
2 REPLIES 2

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 2 replies
  • 974 views
  • 0 likes
  • 2 in conversation