我設置上的一些細胞在公式中這樣的循環:c#npoi excel如何獲得單元格的公式VALUE?
System.String fm = "IF(B2,J2=J1,FALSE)"
another.GetRow(0).CreateCell(28).SetCellFormula(fm);
我總是想知道如何得到這個公式的結果(值),而不是複製整個公式。
MessageBox.Show(another.GetRow(0).GetCell(28).ToString);
它dislplay值IF(B2,J2 = J1,FALSE)
怎麼能得到的結果(值)不是式?
不能正常工作,它顯示0值,但在Excel dispaly FALSE – user7099027
因此嘗試使用BooleanCellValue財產 –