Hi,
Run this test. [pre]
%let i = 5;
data _null_;
depen5 = 64.3;
CALL SYMPUT("CORRA_&i", trim(left(put(DEPEN&i,5.3))));
run;
%put _user_;
[/pre]
Unless you need the single quotes for something else that was going on in the program, you can replace the %quote function with double quotes and the resolution should be OK.
cynthia
... View more