Can we export data of reports into other format like in
world doc etc?

Answers were Sorted based on User's Feedback



Can we export data of reports into other format like in world doc etc?..

Answer / shiva

yes ..u can..not only in word but also in sevaral formats
like pdf,excel..etc..u can go to file in the menu in that u
have this option

Is This Answer Correct ?    4 Yes 2 No

Can we export data of reports into other format like in world doc etc?..

Answer / vijay yadav

Yes we can export data into word, excel, pdf and other
formats.

Is This Answer Correct ?    1 Yes 1 No

Can we export data of reports into other format like in world doc etc?..

Answer / hema

Reports can be exported to a number offormats, such as
spreadsheet, word processor, HTML, ODBC, and common data
interchange formats.
Go to File->Export. There are two sub menus, Export
Report,Report Export Options.

This can be achievable through coding.

ExportDestinationType eExportDestinationType =
ExportDestinationType.DiskFile;
ExportFormatType eExportFormatType =
ExportFormatType.PortableDocFormat;
ExportOptions eExportOptions =
ExportOptions.CreateDiskFileDestinationOptions;

Is This Answer Correct ?    2 Yes 3 No

Can we export data of reports into other format like in world doc etc?..

Answer / arvind gupta

Yes through Export.Dll , during privew section

Is This Answer Correct ?    0 Yes 1 No

Can we export data of reports into other format like in world doc etc?..

Answer / kamalakannan.a

Sure.We can save the crystal report as many formats.There
are .Doc,,xsl,.pdf and etc.

The sample code i used in my project is given below.

case "pdf":
{
//setting disk file name

crDiskFileDestinationOptions.DiskFileName =
ExportPath + filename;
//setting destination type in our case
disk file

crExportOptions.DestinationOptions =
crDiskFileDestinationOptions;
//setting export format type

crExportOptions.ExportDestinationType =
ExportDestinationType.DiskFile;
//setting previously defined
destination opions to our input report document

crExportOptions.ExportFormatType =
ExportFormatType.PortableDocFormat;
break;
}

case "xls":
{
//setting disk file name

crDiskFileDestinationOptions.DiskFileName =
ExportPath + filename;
//setting destination type in our case
disk file

crExportOptions.ExportDestinationType =
ExportDestinationType.DiskFile;
//setting export format type

crExportOptions.ExportFormatType =
ExportFormatType.Excel;
//setting previously defined
destination opions to our input report document

crExportOptions.DestinationOptions =
crDiskFileDestinationOptions;
break;
}


Kamal...

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More Crystal Reports Interview Questions

hi.. i've one crystal report. i want the report header as "employee database". i dont want to right click->insert and goto text object and insert. i've one aspx page and aspx.cs page also. now i want the "employee database" header to be printed from .cs file. i dont want to pass by parameter also.. i.e is there any option in .cs file something like ReportDocument myreport = new ReportDocument(); myreport.Load(MapPath("~/" + "emp.rpt")); myReport.Reportheader="Employee database"; i hope u have understood this. only thing is from .cs file i want to print the header as employee database. i dont want by passing parameter also... please help....

0 Answers  


Is it possible to export crystal report with linked subreports in one excel sheet?If yes,then how?

4 Answers   IBM,


Explain reporter footer contents are move depend the page footer values?

0 Answers  


How to pass stored Procedure Parameters to the report?

2 Answers  


How to open subreport in new ie window using hyperlink button. I used target=new; in the formula field. But it overrides the main window and show the report?

0 Answers  






How can we improve the performance of a crystal report? OR What all performance improvement techniques used in crystal reports? (particularly CR XI)

9 Answers   CSC, ERS, Jupiter,


What are Crystal Reports and Crystal Reports Explorer?

1 Answers  


Can we use our own SQL for creating a report?

5 Answers  


Are there any limitations in crystal reports?

22 Answers  


How can i normalize a Crystal Report..??

0 Answers   HCL,


Can we export data of reports into other format like in world doc etc?

5 Answers  


Can we use stored procedure for creating the report?

11 Answers   Medreich,


Categories