Hi Cynthia, I can't use the tagsets option as we have an organization-wide RTF-setup macro. Is there a way around that, so that I can use SPANROWS option to repeat group/order variables? With my existing code, (without tagset RTF), Order variables are not being repeated at new page beginnings even with the SPANROWS option. Below is a sample code: ** ----------------------------------------------------------------------** ** Generating Listing ** ** --------------------------------------------------------------------- **; %rtfsetup(dshdft=hdft,progid=L-PD); proc report data=final nowindows headline headskip split="|" spacing=1 missing style(report)={outputwidth=&outwidth} style(header)={protectspecialchars=off} spanrows; columns col1 col2 col3 col4 col5; define col1 /order order=data style={cellwidth = 4% just=l protectspecialchars=off} "Subject"; define col2 /order order=data style={cellwidth = 4% just=l protectspecialchars=off} "Major/Minor"; define col3 /order order=data style(header)={cellwidth = 22% just=c protectspecialchars=off} style(column)={just=l} "Description"; define col4 /order order=data style={cellwidth = 6% just=c protectspecialchars=off} "Date"; define col5 /order order=data style={cellwidth = 10% just=l protectspecialchars=off} "Type"; compute after col5; line ""; endcomp; run; In the above code: col1 and col2 are supposed to be repeating variables. But in this situation, they don't repeat when there a page break after first page. Other columns - col3 to col5 - do appear in the new page. Any help is much appreciated. Without this we manually calculate lines in page based on the width of each column, and the number of line each column takes. Thanks, Abby
... View more