I am currently using Spire XLS for Java to calculate formulas with version 13.1.3, purchased about a month ago.
I have a problem executing a formula that includes the FILTER function.
Excel formula
- Code: Select all
=CONCAT(FILTER(Sheet1!P:P,Sheet1!AK:AK>10,""))
When extracting the calculated value, the following error is presented:
- Code: Select all
#NAME?
When exporting the Excel document and then opening it, the following error is displayed:
The code used to obtain the calculation of this formula is the following:
- Code: Select all
worksheet.getCellRange("F1").setFormula("=CONCAT(FILTER(Sheet1!P:P,Sheet1!AK:AK>10,\"\"))");
String calculatedValue = worksheet.getCellRange("F1").getFormulaValue().toString()
System.out.println(calculatedValue);
Please, we need your support to move forward in this process, thank you.