在我的Excel表中,我有一列包含數字。 像:從Excel表中讀取數字值
500
10,973.14
12,456.23
當我讀得值 像:
10,973.141
12,456.2345
讓我知道如何讀值什麼都出現在Excel中片。
輸出:
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"]);
-------------
--------------``
}
}
你正在使用從Excel文件中讀取? –
我正在使用oledb OleDbConnection.Code:for(i = 0; i 0) Creditvalue = Convert.ToDecimal(currentRow [「Credit」]); ------------- -------------- –
Shilpa
請更新您的問題,評論中的代碼非常難以閱讀 –