2013-08-29 66 views
1

我用下面的代碼從excel中檢索數據。但它跳過第一個空列,因爲Usedrange屬性。我怎樣才能包括呢?Excel Interop - 如何獲取第一個未使用列使用的範圍數據?

 Excel.Application xlApp; 
     Excel.Workbook xlWorkbook; 
     xlApp = new Excel.Application(); 
     xlWorkbook = xlApp.Workbooks.Open(fileName); 
     Excel._Worksheet xlWorksheet = (Excel._Worksheet)xlApp.Workbooks[1].Worksheets[2]; 
     Excel.Range excelCell = xlWorksheet.UsedRange; 
     Object[,] values = (Object[,])excelCell.Cells.Value2; 

enter image description here

UsedRange返回B,C和D但我需要A也。

回答

0

我有一個解決方案,它可能有助於某人。

Excel.Range excelCell = xlWorksheet.UsedRange; 
Excel.Range oRng = xlWorksheet.get_Range("A1").SpecialCells(Microsoft.Office.Interop.Excel.XlCellType.xlCellTypeLastCell); 
     int lLastCol = oRng.Column; 
     int colCount = excelCell.Columns.Count; 
     int firstEmptyCols = lLastCol - colCount; 
相關問題