** no "and" in condition -seems to be assumed **; %macro check; %if %sysfunc(fileexist("&PV1.")) not %sysfunc(fileexist("&PV2.")) %then %do ; %put "hello"; %end; %put outside; %mend; %let pv1=<path/filename1>; %let pv2=<path/filename2>; %check;
... View more