The data in the table is missing

When the attached document is uploaded to the application and viewed, the data in the table in excel is missing.
YG16547.zip (859.9 KB)

@srmbimser,

Please call Workbook.CalculateFormula() before rendering to PDF file format. I tested using the following sample code and it works ok.
e.g.
Sample code:

var workbook = new Aspose.Cells.Workbook("e:\\test2\\original_doc.xls");
workbook.CalculateFormula();
workbook.Save("e:\\test2\\original_doc.pdf", Aspose.Cells.SaveFormat.Pdf); 

Hope, this helps a bit.