PDF to Excel

A

Amritha.Datta

Is it possible to convert PDF data report to excel thru VB.NET?

Currently I am generating PDF report in my application using crystal.
The requirement is to also generate the same report in Excel. I know we
can do this by creating Excel template and filling the template with
required data. But wondering if there is any easy way to conver the PDF
report to Excel thru API calls.


Thanks in advance.
 
K

Ken B

Is it possible to convert PDF data report to excel thru VB.NET?
Currently I am generating PDF report in my application using crystal.
The requirement is to also generate the same report in Excel. I know we
can do this by creating Excel template and filling the template with
required data. But wondering if there is any easy way to conver the PDF
report to Excel thru API calls.
You can export to Excel from Crystal Reports.
 
P

Plamen Ratchev

If you already use Crystal Reports to generate PDF reports then you can use
Crystal to generate your Excel reports too. For example:

To generate PDF you probably use this:
ReportObject.ExportOptions.ExportFormatType =
CrystalDecisions.[Shared].ExportFormatType.PortableDocFormat

To generate an Excel file you just change it to:
ReportObject.ExportOptions.ExportFormatType =
CrystalDecisions.[Shared].ExportFormatType.Excel

Regards,

Plamen Ratchev
http://www.SQLStudio.com
 
A

Amritha.Datta

That works! Thank you all


Plamen said:
If you already use Crystal Reports to generate PDF reports then you can use
Crystal to generate your Excel reports too. For example:

To generate PDF you probably use this:
ReportObject.ExportOptions.ExportFormatType =
CrystalDecisions.[Shared].ExportFormatType.PortableDocFormat

To generate an Excel file you just change it to:
ReportObject.ExportOptions.ExportFormatType =
CrystalDecisions.[Shared].ExportFormatType.Excel

Regards,

Plamen Ratchev
http://www.SQLStudio.com


Is it possible to convert PDF data report to excel thru VB.NET?

Currently I am generating PDF report in my application using crystal.
The requirement is to also generate the same report in Excel. I know we
can do this by creating Excel template and filling the template with
required data. But wondering if there is any easy way to conver the PDF
report to Excel thru API calls.


Thanks in advance.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top