Hello,
I am working with Aspose Cells 19.11 and Aspose.PDF 17.4
I try to export data in an excel file to PDF, but I lost data which are in Smart Art Element.
I try to force refresh data with this:
WorkbookDesigner wd = new WorkbookDesigner(book);
wd.CalculateFormula = true;
wd.UpdateReference = true;
wd.Process(true);
wd.Workbook.CalculateFormula();
wd.Workbook.Save(“mydoc.pdf”, Aspose.Cells.SaveFormat.Pdf);
wd.Workbook.Save(“mydoc.xlsx”, Aspose.Cells.SaveFormat.Xlsx);
The excel Result file:
EXCEL_RESULT.PNG (18.2 KB)
The PDF file result:
PDF_RESULT.PNG (16.1 KB)
Do you have any idea why data do not appear in the PDF export?