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

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

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