Этот код будет частью процесса в SAS Data Integration Studio.
Я хочу добиться чего-то вроде:
%macro conditional_start();
%let check_condition = 0;
%if check_condition eq 0 %then %do;
%send_email_that_condition_has_been_met(); /* this I have made */
/*Below run some kind of built-in macro probably, to stop execution of the whole code below */
%end;
%mend;
/*More macros end code I don't want to execute*/
Я не могу упаковать все ниже в большом выражении "если", потому чтоони встроены в блоки.
Возможно ли это?
Заранее спасибо !!