.XLSB and .XLAM file into PDF

Hi Team,


Can I convert a .XLSB , .XLAM file into PDF using aspose.cells?

Thanks in advance.

Regards,
Jyothi

Hi,


Yes, you may convert your mentioned file formats to PDF via Aspose.Cells APIs. See the sample code for your reference:
e.g
Sample code:

string filePath = @“e:\test2\Sample_file.xlsb”;

Workbook workbook = new Workbook(filePath);

workbook.Save(filePath + “.output1.pdf”);


Thank you.