Hello All, I would like to know if my traitement finish before 09:15 AM : %let statut = OK;
data _null_;
call symput ('timenow',put (time(),hhmm.));
run;
%put &timenow;
--09:08
%macro tempsko;
%if '09:15't <= &timenow %then %do;
%let statut=KO;
%end;
%mend;
%tempsko;
%put &statut;
-- KO ??? Thx for your help
... View more