hi! we have a .sas program that calls a series of .sas programs. e.i. %include 'D:\saspgm1.sas'; %include 'D:\saspgm2.sas'; %include 'D:\saspgm3.sas; when we encounter error in saspgm1.sas the error proliferates to saspgm2.sas and saspgm3.sas. even a simple select statement (select * from table1) will not execute. we cannot use the %abort statement since we want to execute the rest of the .sas programs even if an error was encountered in the first .sas program. How can we stop the error to propagate? Help please. Thanks.
... View more