Hello, I'm trying to understand what this code is doing as I'm having the error below when run and if there's away that can be modified would be great. the code was written some one else who is not around any more. Much appreciated your input. data _null_; suffix = put(&DT,yymmddn8.); call symput('DATE', suffix); run; 24 data _null_; 25 26 suffix = put(&DT,yymmddn8.); NOTE: Line generated by the macro variable "DT". 26 16Dec2013 _______ 22 ERROR 22-322: Syntax error, expecting one of the following: !, !!, &, *, **, +, -, /, <, <=, <>, =, >, ><, >=, AND, EQ, GE, GT, IN, LE, LT, MAX, MIN, NE, NG, NL, NOTIN, OR, ^=, |, ||, ~=. 27 28 call symput('DATE', suffix); 29 30 run;
... View more