You can use OUTPUT statement options change ENTRY into a string variable. proc plan seed=17431; factors Block=3 ordered entry=4 random plot=1 of 12 perm / noprint; output out=Test entry cvals=('AA' 'BB' 'CC' 'DD'); run; proc print; run;
... View more