Hi, I am using Handson table version 7.0.0 in my angular application development.
I have tried to use the excel formula in my development. I have tried SUMIFS formula. It’s not working. So, is this formula is supporting inside Handson table? If you have any respective example. Please provide the example.
Back in version 7.0 we had very basic formulas plugin. With version 9.0 we implemented new engine - Hyperfomula. It’s more advanced and offers very Excel-like possibilities. It also have dedicated documentation. That’s why I highly recommend to upgrade if you want to implement formulas.
I checked that it’s working, but for my case the formula is complex. I am getting error in my complex formula.
Is there have any tool where I can check what is the error of that expression.
=SUM(SUMIFS($Z$1:$Z$13,$G$1:$G$13,{"Risk","Event"},$H$1:$H$13,$H1,$I$1:$I$13,$I1))
This formula is working in excel, but while I have used inside Handson table, I am getting error.
I have tried Handsontable example - JSFiddle - Code Playground in this example below data set:
data: [
[‘2’, ‘4’, ‘1’, ‘=SUMIF(A1:A3,B1:B3,{2})’],
[‘5’, ‘2’, ‘3’, ‘=SUMIF(B1:B3,">3")’],
[‘6’, ‘2’, ‘3’, ‘=SUMIF(C1:C3,"<3")’],
]
In Hyperformula there are two seperate functions SUMIF and SUMIFS where the second one sums up the values of cells that belong to the specified range and meet the specified sets of conditions.
Yes, it looks that our older formulas engine doesn’t support SUMIFS function, so upgrade to, at least, version 9.0 with Hyperformula would be necessary.