If row.GetCell(j).CellType = CellType.FORMULA Then '== v.1.2.4版修改
D_dataRow(j) = row.GetCell(j).NumericCellValue
'-- 表示格子裡面,公式運算後的「值」,是數字(Numeric)。而非抓到「公式」。
Else
D_dataRow(j) = row.GetCell(j).StringCellValue '--每一個欄位,都加入同一列 DataRow
End If
參考: https://dotblogs.com.tw/mis2000lab/2011/06/09/npoi_excel_formula_value