hi, not sure why proc print is not printing and the job keeps running. proc freq can't print either.
here is a sample code;
ibname a '/export/sas-viya/homes/viya_admin/casuser/';
PROC IMPORT DATAFILE= "/export/sas-viya/homes/viya_admin/casuser/Sample-Superstore-Subset-Excel.xlsx"
OUT= WORK.orders
DBMS=XLSX
REPLACE;
SHEET="Orders";
GETNAMES=YES;
RUN;
proc contents data=orders;run;
proc freq data=orders;
table 'product category'n/list missing;
run;
proc print data=orders (obs=10);run;
thanks!
--Bill
Did you ever run anything successfully in this environment?
data _null_; put 'Hello World'; run;
Reset the session and try again.
There isn't much we can tell you from the information available.
Did you ever run anything successfully in this environment?
data _null_; put 'Hello World'; run;
Reset the session and try again.
There isn't much we can tell you from the information available.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.