I am using SAS University Edition. I tried to using below statment to access excel file libname prod xlsx "/folders/myfolders/SAS/book1.xlsx"; Actually there is no error in log. But I can only see the prod libref is created but there is no way to access the data in the Excel file. I attach the book1 file, from sheet2 you can see the result from proc contents, there is connection, but can't read data.
... View more
Actually, it does create the format catalog, when using below code proc format library=orion.MyFmts fmtlib; select $country; run; proc format library=orion.MyFmts fmtlib; select $country; run; you can see the results. And when you used the format, it works. But just can't show up under the liberary.
... View more
I used the below code to create permanent format using university edition, the log has no problem. proc format library=orion.MyFmts cntlin=country; run; But I can't see the catalog create under the orion, I deleted the library=orion.MyFmts, it still doesn't create format catalog uner work. I don't know whehter it's because of university editon. can anyone help? Thanks!
... View more