proc transpose data = ia.ctargets out = ia.ctargett(rename=(col1=CTarget)) name = Month; by Year; run; proc print data=ia.ctargett noobs; title 'Transposed ia.ctargets'; run;