Hello, I am attempting to run the Dunn Macro package of code right now. I am about half way through but have gotten snagged on a data step. It seems like there are more coming up as well. data KW_MC_TMP5;set KW_MC_TMP5; 1294 N=_N_; 1295 keep n mean1-mean&groups; WARNING: Apparent symbolic reference GROUPS not resolved. ERROR: Missing numeric suffix on a numbered variable list (mean1-mean). ERROR 22-322: Syntax error, expecting one of the following: a name, ;, _ALL_, _CHARACTER_, _CHAR_, _NUMERIC_. ERROR 200-322: The symbol is not recognized and will be ignored. Is there a way to resolve this? I am relatively new to SAS and trying to learn while using (not highly recommended) but any advice with this will be greatly appreciated. The upcoming steps have similar synthax. data KW_MC_TMP6;set KW_MC_TMP6; N=_N_; keep n n1-n&groups; run; data KW_MC_TMP7;set KW_MC_TMP7; N=_N_; keep n gp1-gp&groups; run; Thanks!
... View more