Hi all, I have a code in macro that generates regression coefficients and saved in data set ''estimates&specification". I need to turn off graphics as otherwise the code takes ages to run. My problem is that, when I run in %DO loop, the code returns errors with the warning message: WARNING: Output 'ParameterEstimates' was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify that the NOPRINT option is not used. WARNING: The current ODS SELECT/EXCLUDE/OUTPUT statement was cleared because the end of a procedure step was detected. Probable causes for this include the non-termination of an interactive procedure (type quit; to end the procedure) and a run group with no output. This is puzzling as the code works if I take it out of DO loop in macro. Any help would be appreciated. >>>>>>>>>> ods listing exclude all; ods graphics off; ods output ParameterEstimates=estimates&specification (keep= Date Variable DF Estimate Probt); proc reg data=temp; by Date; model Return1Month = &RHS; quit; ods listing exclude none;
... View more