Hi,
I'm having a problem exporting a worksheet with conditional formatting to pdf.
I created a couple of rules to make the rows have alternate colors, but only if the first cell has some value in it.
It appears that Aspose cells is not recognizing all the rules when exporting to pdf.
I'm attaching my sample files: the excel workbook, the pdf file generated by aspose and the pdf file generated by excel.
The pdf file was generated with the following code:<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
C#
string filePath = "mypath";
Workbook workbook = newWorkbook(filePath);
workbook.Save(filePath + ".out.pdf", SaveFormat.Pdf);
Thank you.