I'm getting an error when I run this code: %let cutoff = 201506; %let averageperiod = 8; %let startqtr = %SYSFUNC(intnx('qtr', %input(%put(&cutoff*100+ 01,8.),yymmdd8.), -&averageperiod, 'same')); %put &startqtr; the error says... ERROR: Open code statement recursion detected. 885 %let averageperiod = 8; 886 %let startqtr = %SYSFUNC(intnx('qtr', %input(%put(&cutoff*100+ 886! 01,8.),yymmdd8.), -8, 'same')); ERROR: Open code statement recursion detected. 887 %put &startqtr; ERROR: Open code statement recursion detected.
... View more