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

Is there a way to be able to change an image(company logo) dynamically in a report? Example if you have 100 reports, and with the market uncertainty if you anticipate that the company logo might change, how can you change the image just in one place and have this reflected in all the reports at run time?

0 Answers  


Explain basic steps required to display a simple report in crystal?

0 Answers  


hi.. i've created one crystal report. and one global resource file .. in crystal report there's one text object with id Text1. and i want to take the values of resource file i've got it CrystalDecisions.CrystalReports.Engine.TextObject Dtemp1 = ((CrystalDecisions.CrystalReports.Engine.TextObject)myreport .ReportDefinition.Sections["section1"].ReportObjects["Text1" ]); Dtemp1.Text = Resources.Resource.ResourceManager.GetString("Dsec1"); it is showing the correct value want i want but when i give print it is disappearing.. how to solve this please help me..

0 Answers  


How to access crystal reports in .net?

0 Answers  


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

5 Answers  






HI all, I am developing reports using crystal reports in VS2005 in windows application. I have two crystalreports name called "studentReport" and "familyReport". I have a form with a button. If I click the button I need to show up the two reports in one report like page1, and page2. The page1 consists the "studentReport" and the page2 contains the "familyReport". The "familyReport" contains different header and footer. How to show up the two crystal reports in single crystalreportviewer?

2 Answers  


to ensure that all of the data from a field is displayed in a report text object you should do which of the following?? a) use the format wizard b) size the text object manually c) select the auto format option for the text object d) select the can grow option for the text object e) set the can grow option to the details section of the report

2 Answers  


How to conditionally suppress a field based on whether a page number is odd or even?

3 Answers  


How to present data from Crystal Reports on to form?

3 Answers  


Is it possible to join more than one universe in Busniess Objects BOE XI ? If its so Please explain how is that possible ? Thanks in advance for the people posting the answers

3 Answers   Wipro,


How do you format your crystal reports so that on exporting to word doc or pdf it will not lose the orginal format

3 Answers   Target,


Reports can be optimized for web viewing using which of the following strategies: a. Using subreports instead of linking tables b. Avoiding maps c. Using the Page N of M special field to help users understand how many pages are in the report d. Saving reports as version 10 e. Avoiding reports with drill-down capabilities

2 Answers  


Categories