Convert excel files to pdf/a

Hi

I need to convert excel files (actually all office files) to pdf and pdf/a. At the moment I have found options for pdf to set pdf compliance in “Aspose.Words” and “Aspose.Slides” that allows me to create pdf and pdf/a files but not in Aspose.Cells. In Cells I can only produce pdf files.

Please notify when pdf/a support is available for Cells aswell.

Thank you
Coda

Hi,

Thank you for considering Aspose.

We have registered your required feature in our internal issue tracking system with issue id CELLSNET-12432. We will look into this feature and see if we can support it soon as per your requirement.

Thank You & Best Regards,

Hi,

Can you provide me with the status off this feature request. I also would like to store Workbooks in pdf/a format.

Thanks,
Ron

Hi Ron,

We will update you soon.

Thank you.

Hi,

Please try the attached version with the following sample
code, we have supported PDF/A for Aspose.Cells now.
Workbook
workbook = new Workbook();

workbook.Worksheets[0].Cells[0, 0].PutValue(“test
pdf/a”);

workbook.SaveOptions.Compliance = PdfCompliance.PdfA1b;

workbook.Save(“pdf_a.pdf”);

Thank you.

Hi,



Please ignore Aspose.Cells for .NET v5.0.0.5 attached in my previous
post. We have Improved PDF/A-1b in 5.0.0.6 (attached). Please try the
attached version.



Thank you