I want to use engine to read an excel spreadsheet , but failed .
please give a help , thank you.
libname readit "C:\Users\Documents\My SAS Files\9.4\chapter 6\soccer.xls";
proc print data = readit.soccer;
run;
The following is the log said:
126 libname readit "C:\Users\Documents\My SAS Files\9.4\chapter 6\soccer.xls"; ERROR: Connect: Class not registered ERROR: Error in the LIBNAME statement. 127 proc print data = readit.soccer; ERROR: Libref READIT is not assigned. 128 run;
NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE PRINT used (Total process time):
The following is one example from my book:
... View more