I have the following report code and it runs fine, however, I would like the label over the left most column to be on the same level as the treatment name. With this type of report setup, can it be done?
proc report data = combine ; column ("MRDQ Domain Pearson Correlation (P-value)" variable) trtan,eyeord,&variable dummy; where avisitn = &visit and trtan in (&trtan); define variable / '' group f = $domain. style(column) ={cellwidth = 1.55in }; define trtan / '' across order = internal f = trt. style={vjust = bottom}; define eyeord / '' across order = internal f= eyeord. style={vjust = bottom} ;; define &variable / '' style(column) = {cellwidth = 1.25in just = c vjust = top asis = on} ; define dummy / '' noprint;
compute before; line "~S={font_size = 8pt}"; endcomp; compute after variable; line "~S={font_size = 4pt}"; endcomp; run;
... View more