This didn't work. I have the format set as I showed above and in Proc Report I have: Proc format; value asterisk 0 - 0.001 = '***' 0.001 <- 0.01 = '**' 0.01 <- 0.05 = '*' other = [5.3] ; run; proc report data=SASDB.ruggedness_temp_lot nowd headline split='*' spacing=4 missing spanrows style(report)={just=center outputwidth=10 in} style(lines)=header{background=white asis=on font_size=10pt font_face="TimesRoman" just=left font_weight=bold} style(header)=header{background=white font_size=10pt font_face="TimesRoman" frame=box font_weight=bold} style(column)=header{background=white font_size=10pt font_weight=medium} ; columns Name Effect Lot Temp _lot _temp estimate probt ; define Name / 'Model' order=internal; define Effect / 'Effect' order ; define probt / 'P-value^{super 1}' format=$asterick. center style(column)=[cellwidth=.5in]; define LOT / group 'LOT' center style(column)=[cellwidth=.5in]; define Temp / 'Temperature C^{unicode 0B0}' order center style(column)=[cellwidth=.5in]; define _lot / order=data 'vs Lot' center style(column)=[cellwidth=.5in]; define _temp / order=data 'vs Temperature C^{unicode 0B0}' format=F8.4 center style(column)=[cellwidth=.5in]; define estimate / order=data 'Estimate' format=F8.4 center style(column)=[cellwidth=.5in] ; define LSMean / order=data 'LSMean Esdtimate' format=F8.4 center style(column)=[cellwidth=.5in] ; define probt / 'P-value^{super 2}' format=$asterick. center style(column)=[cellwidth=.5in]; compute before _page_/ ; line ' '; line "Mean RNA Concentration Adjusted on Dilution (µg/mL) by Lot using Ruggedness by Temperature C^{unicode 0B0}"; line ' '; line '1 * <= 0.05, ** <= 0.01, *** <=0.001, **** <= 0.0001'; line ' '; endcomp; run; What is wrong??? Thank you for your assistance.
... View more