Aspose.Cells CalculateFormula() taking twice as long between v24.x and v25.x

We are experiencing slow calculation using Aspose.Cells for .NET, specifically after upgrading to version 25.1.

If you see the test below, the time to compute 100,000 calculations is twice as long between version 24.12 and 25.1. The contents of Book.xlsx is a simple 3 cell formula: 1+1=2.

[TestMethod]
public void AsposeCellsShouldCalculate12kSimpleSheetsPerSecond()
{
      License license = new License();
      license.SetLicense(Path.Combine(AppContext.BaseDirectory, "license\\Aspose.Cells.lic"));

      // This work book contains a worksheet with 3 cells and the formula will add two cells together. The cells are filled with 1.
      // So basically it is calculating a simple formula 1 + 1.
      using (var stream = new FileStream(Path.Combine(AppContext.BaseDirectory, "TestData/Book1.xlsx"), FileMode.Open))
      {
            var wb = new Workbook(stream);
            wb.FileName = "Book1.xls";

            var t = DateTime.Now;
            for (int i = 0; i < 100000; ++i)
            {
                  var ib = new Workbook();
                  ib.Copy(wb);
                  ib.FileName = wb.FileName;
                  ib.CalculateFormula();
            }
            var s = DateTime.Now - t;
            // We measure that Aspose.Cells will finish 100k requests in 7.5 seconds
            // But 24.12 will barely pass, and 25.1.1+ will fail where the total seconds are doubled
            if (s > TimeSpan.FromSeconds(7.5)) { Assert.Fail($"Performance is not good enough {s.TotalSeconds} second"); }
      }
}

@vscordino
Would you like to provide you sample file? Please compress the file into zip format and upload it here. We will check it soon.

Thanks John, see attached - Book1.zip (6.4 KB)

@vscordino
By testing with sample files and code on the latest version v25.2, we can reproduce the issue. CalculateFormula() method takes twice as long between v24.x and v25.x.

We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): CELLSNET-57898

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

Thanks John!

Will you reply to this thread once Issue ID(s): CELLSNET-57898 has been resolved?

@vscordino
You are welcome. Thank you for your feedback. We will notify you promptly once there are any updates.

1 Like

@vscordino

We are pleased to inform you that your issue (Ticket ID: “CELLSNET-57898”) has been resolved. The fix will be included in our upcoming release (Aspose.Cells v25.4) that we plan to release in the first half of April 2025. You will be notified when the next version is released.

Fantastic, thank you !

@vscordino
Thank you for your feedback. You are welcome. We will notify you immediately once version v25.4 is released.

1 Like