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: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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