出现这个问题可能是因为SUMPRODUCT函数中的参数类型错误,其中可能包含了类型为ErrorEval的参数。这个问题可以通过将函数的参数进行类型检测和转换来解决。
以下示例代码演示了如何通过遍历函数参数列表并检查每个参数类型来解决这个问题:
int rowCount = sheet.getLastRowNum() + 1;
int columnCount = sheet.getRow(0).getLastCellNum();
int[] arrRow = new int[rowCount];
for (int i = 0; i < rowCount; i++) {
arrRow[i] = i;
}
int[] arrCol = new int[columnCount];
for (int i = 0; i < columnCount; i++) {
arrCol[i] = i;
}
// Create a formula evaluator
FormulaEvaluator evaluator = workbook.getCreationHelper().createFormulaEvaluator();
// Get the cell containing the SUMPRODUCT formula
CellReference formulaCellRef = new CellReference("B6");
Row formulaRow = sheet.getRow(formulaCellRef.getRow());
Cell formulaCell = formulaRow.getCell(formulaCellRef.getCol());
// Get the formula
String formula = formulaCell.getCellFormula();
// Parse the formula
PoiParser pp = new PoiParser(formula, workbook, evaluator, sheet);
pp.parse();
// Check the type of each argument and convert if necessary
for (int i = 0; i < pp.getArgs().length; i++) {
PoiParser.ParsedExpression arg = pp.getArgs()[i];
if (arg.isType(PoiParser.ExcelType.ERR)) {
if (arg.getValue() instanceof ErrorEval) {
// Convert ErrorEval to NullEval
arg.setValue(BlankEval.instance);
}
}
}
// Evaluate the formula with the updated arguments
CellValue result = evaluator.evaluate(pp.getResult());
double value = result.getNumberValue();
在这个代码示例中,我们使用了PoiParser类来解析函数公式并获取函数参数。对于每个参数,我们使用isType()方法检查参数类型,如果类型为ErrorEval,则将其转换为BlankEval,然后再进行函数求值。这样就可以避免Invalid arg type for SUMPRODUCT: (org.apache.poi.ss.formula.eval.ErrorEval)这个问题。