Excel返回日期而不是计算值

时间:2013-11-20 17:07:42

标签: c# excel

所以我有一个excel导入器,它从excel工作表中获取数据并填充DataTable,然后将其插入到SQL表中。我已经将它用于数千个导入但是对于这个工作表,它不会从工作表中提取单元格的正确值。当单元格实际包含“$ 4.32”时,我的函数返回类似“1/4/1900 7:42:25 AM”的值,并且单元格标题值“单位价格”返回空值。该单元的公式类似于“=(J9 *(1-K9)*(1-M9))”。整列的格式为“货币”。

我不知道发生了什么,所以任何见解都会受到赞赏。

获取Excel工作表的代码 - >数据表:

DataTable dt;
        try
        {
            if (FileInUse(filename))
            {
                e.Result = false;
                Core.ShowExclamation("The file is already open. Please save and close the file before continuing.");
                return;
            }

            OleDbConnection con = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + filename + @";Extended Properties=""Excel 12.0;HDR=NO;""");
            string sheet = GetExcelSheetNames(con)[0];

            OleDbDataAdapter da = new OleDbDataAdapter("select * from [" + sheet + "]", con);
            dt = new DataTable();
            da.Fill(dt);
        }

返回一些值的代码:

            string foo = dt.Rows[5][13].ToString() + "\r\n";
            foo += dt.Rows[6][13].ToString() + "\r\n";
            foo += dt.Rows[7][13].ToString() + "\r\n";
            foo += dt.Rows[8][13].ToString() + "\r\n";
            foo += dt.Rows[9][13].ToString() + "\r\n";
            foo += dt.Rows[10][13].ToString();
            Core.ShowInfo(foo);

Returns:                                        Should Returns:
12/30/1899 12:00:00 AM                          0.00%
9/27/2013 12:00:00 AM                           9/27/2013
{}                                              Reseller Price Per Unit
1/4/1900 7:42:25 AM                             $4.32
1/4/1900 7:42:25 AM                             $4.32
3/10/1901 10:23:42 AM                           $435.43

1 个答案:

答案 0 :(得分:0)

最后从ØyvindKnobloch-Bråthen提出的问题中找到了这篇文章

http://neosblogs.blogspot.com/2008/06/how-jet-ole-db-decide-excel-column-type.html

修复:

OleDbConnection con = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + filename + @";Extended Properties=""Excel 12.0;HDR=NO;IMEX=1""");

只需设置“ IMEX = 1