Hello,
I'm trying to find a better solution for handling excel-files. I'm now using Office Windows Components for this. It works, but it's very slow.I did some testing with Aspose.Cells and after loading an excel-file and calling the CalculateFormula-method I got some #VALUE! -values in some cells. When I look at the file it looks fine.
I attached the excel-file. And below is what I did.
FileStream stream = File.Open("tiox_ws_rekenmodel_0.xls", FileMode.Open);
Workbook workbook = new Workbook(stream);
workbook.CalculateFormula();
Worksheet uitvoerWorksheet = workbook.Worksheets["uitvoer"];
string value = uitvoerWorksheet.Cells["B2"].StringValue;
Kind regards,
Jan Kok