Click here to Skip to main content
15,917,321 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi
I am using this code.

C#
ReportClass report = ConfiguringCrysReports(); 
ExportOptions exportOpts = new ExportOptions(); 
ExcelFormatOptions excelFormatOpts = new ExcelFormatOptions(); DiskFileDestinationOptions diskOpts = new DiskFileDestinationOptions(); 
exportOpts = report.ExportOptions; 
// Set the excel format options. 
//excelFormatOpts.ExcelUseConstantColumnWidth = true; 
exportOpts.ExportFormatType = ExportFormatType.Excel; 
exportOpts.FormatOptions = excelFormatOpts; 
// Set the disk file options and export. 
exportOpts.ExportDestinationType = ExportDestinationType.DiskFile; diskOpts.DiskFileName = "D:\\RnD\\abc.xls"; 
exportOpts.DestinationOptions = diskOpts; report.Export(); 


But the text in excel is wrapping and merging column cells. I require not to merge column cells. Any suggestion / help is welcome.
Posted
Updated 22-May-13 20:29pm
v3

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900