Unable to read excel conent using 7.2.2

Hi,

I tried to read the content from the attached Excel file using Aspose.Cells 7.2.2, but got null for all cells within this file.
However, it is OK if I saved this file in xlsx format.

Please help to identify this issue. Thanks.

Hi,

Thanks for your posting and using Aspose.Cells for .NET.

I got the following exception when I loaded your file into Aspose.Cells.Workbook object.

I have tested it with the latest version:
Aspose.Cells
for .NET v7.2.2.
5


Exception
An unhandled exception of type ‘Aspose.Cells.CellsException’ occurred in Aspose.Cells.dll

Additional information: This Excel files contains BIFF7(Excel95 or earlier file format) records.

This exception means, your file has older format which is not supported. We do not support the formats which contains records older than Excel 97.

C#


string filePath = @“F:\Downloads\10110607687-3119-2.xls”;


Workbook workbook = new Workbook(filePath);