Hello All. Suggestions on why the macro autocall_mac1 is not being resolved in this program?
filename macros "C:\sas_macros";
options mautosource sasautos = (macros SASAUTOS);
%autocall_mac1
the log says :
WARNING: Apparent invocation of macro AUTOCALL_MAC1 not resolved.
ERROR 180-322: Statement is not valid or it is used out of proper order.
C:\sas_macros\autocall_mac1.sas looks like this:
%macro autocall_mac1;
%let y = autocall_mac1;
%put "&y";
%mend autocall_mac1;
%autocall_mac1
Andy