我正在使用Apache POI在工作簿中应用IRR公式,并且能够在Excel工作表中看到该值。但是获得的值为#NUM!当我尝试使用FormulaEvaluator检索值时。 例子
Cell cell = contentRow.createCell(3);
cell.setCellFormula(irrFormula + "*12");
FormulaEvaluator evaluator = sheet.getWorkbook().getCreationHelper().createFormulaEvaluator();
CellValue cellValue = evaluator.evaluate(cell);
if (Constants.NUM_ERROR.equals(cellValue.formatAsString().trim())) {
calculateTotal.setIrrTotal(Constants.IS_NAN);
}else {
double irrValue = cellValue.getNumberValue();
}
我还尝试了以下方法来获取值,但未获取该值。请提供您的建议
for(Cell cell : row) {
if(cell.getCellType() == Cell.CELL_TYPE_FORMULA) {
System.out.println("Formula is " + cell.getCellFormula());
switch(cell.getCachedFormulaResultType()) {
case Cell.CELL_TYPE_NUMERIC:
System.out.println("Last evaluated as: " + cell.getNumericCellValue());
break;
case Cell.CELL_TYPE_STRING:
System.out.println("Last evaluated as \"" + cell.getRichStringCellValue() + "\"");
break;
}
}
}
cell.getRawValue();