Hi All, I have an issue with titles in the report getting truncated when using ODS Tagsets.ExcelXP . when i reduce the table column width the titles are getting overrided to this width, but i want to display the titles irrespective of the report column width. can anyone suggest on this and even the data color is getting overrided to blue color which i have not given. Please look into the sample code below and suggest on this title; footnote; ods listing close; ods escapechar="^"; ods tagsets.excelxp file="/location/myfile.xls" style=BarrettsBlue OPTIONS ( Sheet_Name = 'Program' Sheet_Interval = 'proc' Orientation = 'portrait' FitToPage = 'yes' Pages_FitWidth = '1' Pages_FitHeight = '100' Center_Horizontal = 'yes' Embedded_Titles = 'yes' Embedded_Footnotes = 'yes' Absolute_Column_Width = '30,25' ); /* title1*/ title1 j=left bold font=arial bc=cxffffff color=cx685c53 h=18pt "XYZ Corporation INDIA Pvt ltd (Monthly Standard report)"; title2 j=left bold font=arial bc=cxffffff color=cx685c53 h=10pt "Monthly Program Report"; title3 j=left font=arial bc=cxffffff color=cx685c53 h=10pt "Activity From: &startDatePrvYr through &endDatePrvYr"; proc report data=final style(report) = [just=left backgroundcolor=cxffffff BORDERRIGHTCOLOR=white BORDERTOPCOLOR=white BORDERCOLOR=white font = (Arial,10pt)] split= "*" style(header)=[just=left BACKGROUND =cx685c53 BORDERRIGHTCOLOR=white BORDERTOPCOLOR=white foreground=white BORDERCOLOR=white font = (Arial,10pt) font_weight = bold] style(column)=[BORDERRIGHTCOLOR=white foreground=cx685c53 BORDERTOPCOLOR=white BORDERCOLOR=white font = (Arial,10pt)]; column program Count ; define program / display "Program" style(column)=[ indent=4 tagattr="format:@" just=center background=cxffffff foreground=cx685c53] style(header)=[just=left indent=2 ]; define Count / analysis "Count" style(column)=[ just=center background=cxffffff foreground=cx685c53] style(header)=[just=left indent=2 ]; rbreak after / summarize ; compute after; program='Total'; call define(_row_,'style',"style=[font_weight=bold]"); endcomp; run; ods tagsets.excelxp close; ods _all_ close; ods listing; here title1 is getting truncated to the column width 15 as given in absolute column width, but i want to remain the same width for column and titles should display as they are. And the color for data i given as "cx685c53", but its getting overrided by blue color. Thanks, Vish
... View more