PDF to xlsx convertion

how to convert pdf files to .xlsx using c# or .NET
I am using Aspose.PDF

Hi Raghu,


Thanks for using our API’s.

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

Please note that Aspose.Pdf for .NET supports the conversion of PDF file to XLS format and in order to create XLSX file, you need to load resultant XLS file into Aspose.Cells for .NET and then save the output in XLSX format. For more information, please visit Saving Files

@raghu.gls

We have added new property [ExcelSaveOptions](https://reference.aspose.com/pdf/net/aspose.pdf.excelsaveoptions/excelformat) in Aspose.PDF 18.9 to convert PDF files into XLSX formats. Following sample code shows you how to achieve this.

ExcelSaveOptions options = new ExcelSaveOptions();
options.Format = ExcelSaveOptions.ExcelFormat.XLSX;

Document pdfDocument = new Document(“input.pdf”);
pdfDocument.Save(“output.xlsx”, options);