I need to export excel file with crystal report.
Is there any way to export data only without formatting by using code?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can export data shown in the report without formatting, in different ways:
1- Replace the CrystalReportViewer Control with the ReportExporter Control. It will export the report in the format you choose.
2- Call ExportToHttpResponse method
3- Call ExportToDisk method
4- Export dataset to excel (Look at Ahmed answer)
You can choose the way that best fits your needs, but you must try if it works with the runtime you use either in development or in release server.
ExportFormatType.ExcelRecord means that is generated an xls file, without formatting. If you set ExportFormatType.Excel fields that are marked as “Can Grow” are merged with an otherwise blank row below them..