BookmarkSubscribeRSS Feed
rishabhmehra13
Calcite | Level 5

/** Import an XLSX file.  **/
libname g '/folders/myfolders/';
PROC IMPORT DATAFILE="/folders/myfolders/grocery_coupons.xls";
      OUT=g.permanent
      DBMS=XLSX
      REPLACE;
RUN;

/** Print the results. **/

PROC PRINT DATA=g.permanent; RUN;

 

 

log

 

Engine: V9
Physical Name: /folders/myfolders
58 PROC IMPORT DATAFILE="/folders/myfolders/grocery_coupons.xls";
ERROR: Output SAS data set must be provided.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE IMPORT used (Total process time):
real time 0.00 seconds
cpu time 0.01 seconds
 
59 OUT=g.permanent
60 DBMS=XLSX
61 REPLACE;
62 RUN;
63
64 /** Print the results. **/
65
 
 
66 PROC PRINT DATA=g.permanent; RUN;
3 REPLIES 3
Reeza
Super User

The error is the same as in your last question. 

 

https://communities.sas.com/t5/SAS-Analytics-U/Error-using-Proc-import/m-p/290978

 

There is no semicolon after the file path. 

Cynthia_sas
Diamond | Level 26
Hi, in addition, please check the documentation for DBMS=XLSX -- you show that your file name is .XLS, not .XLSX, so you may be trying the wrong engine to read the file, once you get your syntax worked out.

cynthia
Tom
Super User Tom
Super User

I always place the semi-colon on a multiple line statement on a new line and align it with the beginning of the statement. The lines in between are indented. The same way that I format DO/END blocks of code.  

 

I find that is makes it much less likely that I will accidently insert an extra semi-colon into the middle of long statements.

 

libname g '/folders/myfolders/';
PROC IMPORT
  DATAFILE='/folders/myfolders/grocery_coupons.xlsx'
  OUT=g.permanent
  DBMS=XLSX
  REPLACE
;
RUN;

 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 3 replies
  • 2589 views
  • 0 likes
  • 4 in conversation