%IF %SYSFUNC ( EXIST(MYLIB.CONTROLS)) = 1
%THEN %DO;
PROC DATASETS LIBRARY=mylib NOLIST;
DELETE CONTROLS;
RUN;
%END;
I'm a newer, I only know %SYSFUNC function for automatic macro variables likes sysdate9; how THATcan be used with A data file ((MYLIB.CONTROLS),
AND what means for EXIST?
THANKS A MILLION IN ADVANCE.
SASJUNIOR