有誰知道是否可以在SpreadsheetLight中檢索公式的數值?如果不是可以讀取OpenXML中的公式作爲數字?SpreadsheetLight從單元格公式中獲取數值
我需要回到7.07的cellValue(8,1)
public static void TestSlWorkbook()
{
SLDocument sl = new SLDocument();
sl.SetCellValue(1, 1, 1.01);
sl.SetCellValue(2, 1, 1.01);
sl.SetCellValue(3, 1, 1.01);
sl.SetCellValue(4, 1, 1.01);
sl.SetCellValue(5, 1, 1.01);
sl.SetCellValue(6, 1, 1.01);
sl.SetCellValue(7, 1, 1.01);
sl.SetCellValue(8, 1, "=Sum(A1:A7)");
}
「評估()」在你的環境中工作嗎? – 2013-12-10 15:30:33
不,我正在使用spreadsheetlight.com的插件 – Ryan
也許您應該使用Interop,它很容易,也是最常見的方式。我確定你會得到更多的幫助 –