|
Why when I submit this the "call execute" only runs for the last
observation?
date1 is a variable in data set "a".
Data _null_;
set a;
call execute('%lexist(Estimates,'||date1||');');
run;
I want it to run for all observations in "a".
thanks.
I use SAS 9.1.1.3 on XP.
|