8

I set a formula on some cells in a loop like this:

System.String fm = "IF(B2,J2=J1,FALSE)"
another.GetRow(0).CreateCell(28).SetCellFormula(fm); 

I always wondered how to get the result (value) of this formula and not copy the entire formula.

MessageBox.Show(another.GetRow(0).GetCell(28).ToString);

it dislplay value IF(B2,J2=J1,FALSE)

how can get the result (value) not formula?

user7099027
  • 113
  • 1
  • 1
  • 7

5 Answers5

5
HSSFFormulaEvaluator formula = new HSSFFormulaEvaluator(workBook);

then you can use this formula for all cells in your excel file by using

formula.EvaluateAll();

or you can use it for specific cell like this

var cell = sheet.GetRow(row).GetCell(column);
            string Res = "";
if (cell != null)
            {
                formula.EvaluateInCell(cell);

                switch (cell.CellType)
                {
                    case NPOI.SS.UserModel.CellType.Numeric:
                        Res = sheet.GetRow(row).GetCell(column).NumericCellValue.ToString();
                        break;
                    case NPOI.SS.UserModel.CellType.String:
                        Res = sheet.GetRow(row).GetCell(column).StringCellValue;
                        break;
                }
            }
ajd.nas
  • 314
  • 2
  • 12
4

Try to use:

another.GetRow(0).GetCell(28).NumericCellValue;

You can use several different properties based on column type.

Przemysław Kleszcz
  • 516
  • 1
  • 7
  • 13
2

Use "EvaluateAllFormulaCells(workbook)" method to evaluate all formulas after setting it into excel file. see this link How to re-calculate a cell's formula?

kumar chandraketu
  • 2,022
  • 2
  • 18
  • 22
2

Use StringCellValue to get the value from cell your formula will not read

MessageBox.Show(another.GetRow(0).GetCell(28).StringCellValue
0

try this https://poi.apache.org/spreadsheet/eval.html

example

FormulaEvaluator evaluator = wb.getCreationHelper().createFormulaEvaluator();
CellValue cellValue = evaluator.evaluate(cell);
Muflix
  • 5,120
  • 12
  • 65
  • 133