Hi,
I am trying to convert an XLS file to PDF, but am unable to save the file in AsposePDF format. I am using the following code:
Workbook wb = new Workbook();
wb.Open("Book1.xls");
wb.Save("temp.xml", FileFormatType.AsposePdf);//<-exception is thrown here

Narrowing the problem down, I have found that this is occuring when some cells are encountered which contain a very large negative value, and have a custom date formatting (mmmm yyyy) applied, see (Book1.xls)
(I am using Aspose.Cells version 4.4.3.1, along with .NET Framework version v2.0.50727)