BookmarkSubscribeRSS Feed
trekvana
Calcite | Level 5
Hello all,

so I am working on this program:

%macro sc(i,resdata);
proc iml;
start delcol(x,i);
return(x[,setdif(1:ncol(x),i)]);
finish;

use test&i;
read all into x;
x=delcol(x,{1,2}); print x;

use &resdata;
read all var {Resid} into y where(id=(&i+1)&Resid^=.); print y;

sc=x*y; print sc;
quit;
%mend;

I am getting this error: WARNING: Apparent symbolic reference RESID not resolved.

I believe its from the part in the code I bolded. I think the macro thinks that resid is an input variable (like i and resdata) but it is really part of the where condition. Is there anyway I can tell the macro that &Resid is not part of the inputs?
2 REPLIES 2
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
It appears you are attempting to use the ampersand character as an operator "AND" condition. Separate the "&" from the SAS variable "Resid" so that SAS does not interpret the string as a macro variable.

Scott Barry
SBBWorks, Inc.
PatrickG
SAS Employee
Or try quoting the &...

where(id=(&i+1)%nrquote(&)Resid^=.); print y; sc=x*y; print sc; quit;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1161 views
  • 0 likes
  • 3 in conversation