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.
Get started using SAS Studio to write, run and debug your SAS programs.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.