Hi: For TOT_CNT, FD_CNT and FD_PEN, if you want to remove their headers, you would use ' ' (quote space quote) on the DEFINE statement for each variable. For the ACROSS items, NCA and SEGMENT, ' ' (quote space quote), again, would blank out the headers for those items in the header area. As for your question about the COMPUTED column, since you are computing multiple occurences of FD_PEN, since that will be computed UNDER each combination of your ACROSS item, then you would have something like (not tested with your data -- so the numbers may need to change): compute fd_pen; _c6_ = _c5_/_c4_; _c9_ = _c8_/_c7_; endcomp; For each occurenct of FD_PEN you need to calculate under the combinations of NCA and SEGMENT. To find out, for sure the absolute column names that REPORT is creating for each of your ACROSS variables, look at the OUT= file with PROC PRINT and you should be able to figure out the right absolute column numbers to use. cynthia
... View more