Hello, I have created three macro variables (presented bellow) and save the code in a process flow named AutoExec. I have tried to use these macro variables in a diffrent process flow in a querry builder and I had an error message (both process flows were part of the same project). Is there a way to transfer macro variables between diffrent process flows (without using prompts)? Is there a way to use Prompts to achieve the same results as the code I have bellow? data _null_; Extract_start=intnx('month',today(),-1,'b'); Extract_end=intnx('month',today(),-1,'e'); call symput('Date_RPT_From',put(Extract_start,date9.)); call symput('Date_RPT_To',put(Extract_end,date9.)); call symput('RunDate',put(today(),date9.)); run; Thank you, Madalin
... View more