Convert pdf to csv or excel using Aspose.PDF for .NET

Hi,

I need to convert pdf to excel, downloaded the trial version, could not find a sample to perform the similar task, please kindly advise.

Hi Mleanie,


Thanks for contacting support.

Please visit the following link for required information on Convert PDF to Excel workbook

@MelanieMen

We would like to share with you that you can generate CSV file format from PDF using Aspose.PDF for .NET 20.7:

PDF to CSV

ExcelSaveOptions options = new ExcelSaveOptions();
options.ConversionEngine = ExcelSaveOptions.ConversionEngines.NewEngine;
options.Format = ExcelSaveOptions.ExcelFormat.CSV;

Document pdfDocument = new Document("Currencies.pdf");
pdfDocument.Save("Currencies.csv", options);