Hi all, I am running a syntax on SAS OnDemand for academics to code date. I am a huge newbie to SAS for context. The syntax runs but it does not generate an output file. It says it sends it to a work library but it does not do that either. The specific code is attached below. How can I get it to save properly and generate an output. Thanks! proc datasets library=work nolist; modify final; attrib _all_ label=''; quit; /* proc datasets lib=work nolist; save final; quit;*/ run; %mend;
... View more