Hi, i have a Problem with my Code. %macro print2; %let x = %test% %test2%; %let myvar=%str('%'); %local i next_name; %do i=1 %to %sysfunc(countw(&x)); %let next_name = %scan(&x, &i); %put &next_name; %end; %mend print2; %print2; the ouput is : test test2 but i Need this Output %test% %test2%
... View more