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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

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