Hi, Here's the Proc report that I used. ods Excel file="&rpt_location./&report_cadetail." options (absolute_column_width="20,20,40,20,50,20,20,50,20,20,20,20,20,20,25,25,25,25,25,25,25,25,25,30,30,30,30,30,30,30" sheet_name='Detail exceptions' frozen_headers = 'on' autofilter = 'all' sheet_interval = 'none' suppress_bylines='yes' embedded_titles='yes' embedded_footnotes='yes' ); proc report data = report_ca_other_excp style(column)=[tagattr="wrap:yes" cellwidth=1000% vjust=top ] ; options missing=''; title justify= left "CA - Report"; columns _ALL_; run; ods Excel close;
... View more