Hi Cynthia, Upon further review it actually didn't work - I shrank the width of the column down to force wrapping and I still have the same issue. I will submit the problem to technical support. ods pdf file = "repeat.pdf" style=test; proc report data=sashelp.shoes nowd spanrows; column Region Product Subsidiary Stores Sales Inventory Returns; define Region / group ; define Product / group ; define Subsidiary / group; define Stores / group; define Sales / group; define Inventory / group; define Returns / group; compute returns; call define(1,'style','style={vjust=middle cellwidth=.75in cellheight=.15in}'); call define(2,'style','style={vjust=middle cellwidth=.75in cellheight=.15in}'); endcomp; run; ods pdf close;
... View more