0

我需要确定 Excel 工作表中有多少行填充了数据,即不为空的行。我需要使用 c# 来做到这一点。

目前我正在使用以下代码:

Excel.Application excelApp = new Excel.Application();
            string workbookPath = "C:\\ScriptTest\\bin\\Debug\\SDownloadScripts\\ExcelResult.xlsx";
            Excel.Workbook excelWorkbook = excelApp.Workbooks.Open(workbookPath,
        0, false, 5, "", "", false, Excel.XlPlatform.xlWindows, "",
        true, false, 0, true, false, false);
            Excel.Sheets excelSheets = excelWorkbook.Worksheets;
            string currentSheet = "Sheet1";
            Excel.Worksheet excelWorksheet = (Excel.Worksheet)excelSheets.get_Item(currentSheet);
            //long i = excelWorksheet.UsedRange.Rows.Count;
            int lastUsedRow = excelWorksheet.Cells.SpecialCells(Excel.XlCellType.xlCellTypeLastCell,

Type.Missing).Row;
            return lastUsedRow;
        }

我的工作表只填充了四行,但我得到了 65536。结果我需要 4 行,即没有填充一些数据的行。请建议。

4

3 回答 3

3

尝试这个..

string excelConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source='C:\Users\xxxxxx\Desktop\1-8-13-ct.xlsx';Extended Properties=Excel 12.0;Persist Security Info=False";
    //Create Connection to Excel work book
    OleDbConnection excelConnection =new OleDbConnection(excelConnectionString);
    //Create OleDbCommand to fetch data from Excel
     OleDbCommand cmd = new OleDbCommand("select count(*) from [Sheet1$]", excelConnection);
    con.Open();
    int rows = (int)cmd.ExecuteScalar();
  con.Close();
于 2013-09-04T06:48:29.613 回答
0

私有数据集 CreateDataSource(string strFilePath, string strSheetName) { DataSet myDataSet; 我的数据集 = 空;尝试 {

        if (strSheetName.Length > 0)
        {
            StringBuilder strConnectionString = new StringBuilder();
            strConnectionString.AppendFormat("Provider={0};", "Microsoft.ACE.OLEDB.12.0");
            strConnectionString.AppendFormat("Data Source={0};", strFilePath);
            strConnectionString.Append("Extended Properties=");
            strConnectionString.Append(((char)34).ToString()); //start of trickypart
            strConnectionString.Append("Excel 12.0 Xml;");
            // always treat contents of cells as text, which gives us full control/responsibility for casting to numeric when ncessary
            strConnectionString.Append(((char)34).ToString()); // end of tricky part
            string str = strConnectionString.ToString();

            OleDbConnection conn = new OleDbConnection(str);

            OleDbDataAdapter myCommand = new OleDbDataAdapter(" SELECT * FROM [" + strSheetName + "$] where QuestionDescription <>''", str);
            myDataSet = new DataSet();
            myCommand.Fill(myDataSet);
        }
        else
        {
            trError.Visible = true;
            lblError.Text = "File is Invalid format";
        }
    }
    catch
    {
        trError.Visible = true;
        lblError.Text = "Invalid format!!";
    }
    return myDataSet;
}

对于使用上述代码,您可以查询以获得非空白行。结果将存储到数据集中。您可以从数据集中获取非空单元格计数。要使用此代码,您需要使用“Microsoft.ACE.OLEDB.12.0”提供程序。

于 2013-09-04T06:49:59.573 回答
0

我在 stackoverflow 上发现了一些线程问了一个类似的问题。也许这些已经解决了你的问题。这个答案似乎是您正在寻找的。

根据您的结果,XlCelltype的文档和注释行我假设您的工作表中的 usedRange 大于实际使用的区域。如果其他解决方案不起作用并且您的数据行之间没有空行,您可能可以尝试搜索具有空单元格的列中的第一行(此行 1 应该是您需要的行数)。

于 2013-09-04T06:50:57.513 回答