我可以使用XlCellType.xlCellTypeLastCell
查找使用范围内的最后一个单元格。如何在一行中获得第一个单元格?
获取最后一个单元格位置的代码。
Excel.Range mergeCells = (Excel.Range)mergeSheet.Cells[6,1].EntireRow;
var rowRng = mergeCells.SpecialCells(XlCellType.xlCellTypeLastCell, Type.Missing);
var colPosition = rowRng.Column;
一种方法是获取mergeCells.value
并循环遍历以递增计数器,直到看到空值/空值为止。但是我希望能做到这一点。
有任何想法吗 ?
测试用例:
(1)
预期结果colPosition = 1
预期结果colPosition = 5
答案 0 :(得分:3)
这是使用Excel Interop库的解决方案(如问题中所标记)。下面的方法将返回给定行中第一个单元格的从1开始的列索引。它适用于您提供的测试用例以及我自己的一些用例。请注意,如果您只想使用使用范围内的第一行而不是提供的行,则可以使用ActiveSheet.UsedRange.Rows[1].Row
查找第一使用的行号。
public static int FindFirstCellInExcelRow(string filePath, int rowNum)
{
Excel.Application xlApp = null;
Excel.Workbook wkBook = null;
Excel.Worksheet wkSheet = null;
Excel.Range range = null;
try
{
xlApp = new Excel.Application();
wkBook = xlApp.Workbooks.Open(filePath);
wkSheet = wkBook.ActiveSheet;
range = wkSheet.Cells[rowNum, 1].EntireRow;
if (range.Cells[1, 1].Value != null)
{
return range.Cells[1, 1].Column;
}
var result = range.Find(What: "*", After: range.Cells[1, 1], LookAt: Excel.XlLookAt.xlPart, LookIn: Excel.XlFindLookIn.xlValues, SearchOrder: Excel.XlSearchOrder.xlByColumns, SearchDirection: Excel.XlSearchDirection.xlNext, MatchByte: false, MatchCase: false);
int colIdx = result?.Column ?? 0; // return 0 if no cell in row contains value
return colIdx;
}
finally
{
wkBook.Close();
Marshal.ReleaseComObject(xlApp);
Marshal.ReleaseComObject(wkBook);
Marshal.ReleaseComObject(wkSheet);
Marshal.ReleaseComObject(range);
xlApp = null;
wkBook = null;
wkSheet = null;
range = null;
}
}
答案 1 :(得分:2)
我强烈(x10)建议在Microsoft的Excel库上使用ClosedXML(除非您正在使用旧的xls文件)。使用ClosedXML,您可以执行以下操作(此操作直接在他们的网页上进行):
直接从NuGet软件包中获取它。 Install-Package ClosedXML -Version 0.93.1
https://github.com/ClosedXML/ClosedXML/wiki/Finding-and-extracting-the-data
var wb = new XLWorkbook(northwinddataXlsx);
var ws = wb.Worksheet("Data");
// Look for the first row used
var firstRowUsed = ws.FirstRowUsed();
// Narrow down the row so that it only includes the used part
var categoryRow = firstRowUsed.RowUsed();
// Move to the next row (it now has the titles)
categoryRow = categoryRow.RowBelow();
// Get all categories
while (!categoryRow.Cell(coCategoryId).IsEmpty())
{
String categoryName = categoryRow.Cell(coCategoryName).GetString();
categories.Add(categoryName);
categoryRow = categoryRow.RowBelow();
}
答案 2 :(得分:0)
尝试下面的代码段,这将给出excel使用范围的第一行
Excel.Workbook xlWB = Globals.ThisAddIn.Application.ActiveWorkbook;
Excel.Worksheet xlWS = xlWB.ActiveSheet;
int firstRow = xlWS.UsedRange.Row;