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?