Hi, I am figuring out the mean for the variables ABD, NHD, NHJ and NHD, and I get their means in my output table. However, I want to format so that the table in the output has a separate column that indicates what ABD, NHD, NHJ and NHD stand for. I want to indicate so that ABD is for Monday, NHD is Tuesday, NHJ is for Wednesday and NHD is for Thursday. Each of ABD, NHD, NHJ and NHD is not categorized, and I do not plan to categorize (there is no need for that since all I need is the mean). How do I define (or format ) so that monday, tuesday and Wednesday and Thursday appear in a separate column on the output table? proc means data=____.____.; var ABD NHD NHJ NHD; run; Thanks, GF
... View more