%let a=b; %let b=c; %let c=d; %let d=a; %put &a; b %put &&&a; c %put &&&&&&&a; d %put &&&&&&&&&&&&&&&a; a I want to count the number of "&" without hard cording by adding the "&" each of the time until i get the answer, like b=1, c=3, d=7, a=15
... View more