BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
vicdicenzo
Obsidian | Level 7

I am trying to import an xlsx file using on demand for academics.  I have cretaed a folder and uploaded the data. I have created a library and copied that as a path but I get an error message that the file does not exist.

 

OPTIONS LS=100 PS=100 NOCENTER NODATE NONUMBER;

libname NCSTB "/home/xxxxxxxx0/2020/NCSTB";

/** Import an XLSX file. **/

PROC IMPORT DATAFILE= "/home/xxxxxxxx0/2020/NCSTB/STB TL FREQ Data.XLSX"
OUT=WORK.ALL
DBMS=XLSX
REPLACE;
RUN;

 

This seems different from SAS UE but I don't know how to fix.  Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
1 REPLY 1
Kurt_Bremser
Super User

Make sure that the spelling of the filename is absolutely correct, in particular regarding upper/lowercase.

Excel stores with a lowercase extension (xlsx, not XLSX).

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1364 views
  • 0 likes
  • 2 in conversation