%macro process_8
(ext_output,
transf_output_gr,
transf_output_se,
transf_output_su,
rest_output_gr,
rest_output_se,
rest_output_su); data _null_;
if "&HUIT" = "YES" then call execute('%nrstr(%process_8(
ext_output = EXT_8,
transf_output_gr = TRANSF_8_GR,
transf_output_se = TRANSF_8_SE,
transf_output_su = TRANSF_8_SU,
rest_output_gr = REST_8_GR,
rest_output_se = REST_8_SE,
rest_output_su = REST_8_SU)');
run; Hi all, I defined a macro process_8, and then I call it like shown. When I do this I have the warning in title. I know I can manage it by removing the left part of the equal, but for readibility question I prefer to keep it. How can I manage it? Thanks,
... View more