在我的 excel 表中,我有一列包含数字。喜欢:
500
10,973.14
12,456.23
当我阅读时,我得到如下值:
500
10,973.141
12,456.2345
让我知道如何读取 excel 表中出现的值。
输出 :
500
10,973.14
12,456.23
我使用了 oledbconnect。类似的代码;`
for (i = 0; i < accountcopytab.Rows.Count-2; i++)
{
currentRow = accountcopytab.Rows[i];
if (currentRow["Credit"].ToString().Length > 0)
{
Creditvalue = Convert.ToDecimal(currentRow["Credit"]);
-------------
--------------``
}
}