Generate a report of the TRAIN data set. The FORMAT= option in the DEFINE statement associates $SkillTest. with the NAME variable. The column that contains the formatted values of NAME is using the alias Test. Using an alias enables you to print a variable twice, once with a format and once with the default format. See The REPORT Procedurefor more information about PROC REPORT.
proc report data=train nowd headskip; column name name=test idnumber; define test / display format=$skilltest. 'Test'; define idnumber / center; title 'Test Assignment for Each Employee'; run;