How to get specific Range in Excel through COM Interop?

安稳与你 提交于 2019-11-29 14:32:29

问题


i have the following problem. I have to read an excel file through COM interop. I am new to programming with COM interop.

I search for a specific string using this:

this.sheet = (Excel.Worksheet)this.excelApp.Workbook.Sheets.Item[this.sheetname];
            this.sheet.Activate();
            Excel.Range firstRow = this.sheet.Range["A1", "XFD1"];
            Excel.Range foundRange = firstRow.Find(
                this.StringISearch,
                Type.Missing,
                Type.Missing,
                Excel.XlLookAt.xlWhole,
                Excel.XlSearchOrder.xlByColumns,
                Excel.XlSearchDirection.xlNext,
                false,
                false,
                Type.Missing);

No i want to use the foundRange as a starting point to get another range.

Something like this

Excel.Range MyRange = this.sheet.Range[foundRange + 2 rows, + 1 column & lastRow];

I don't see a way to do this. Is there one?


回答1:


Okay, after some sleep i have found the answer.

 int startColumn = Header.Cells.Column;
 int startRow = header.Cells.Row + 1;
 Excel.Range startCell = this.sheet.Cells[startRow, startColumn];
 int endColumn = startColumn + 1;
 int endRow = 65536;
 Excel.Range endCell = this.sheet.Cells[endRow, endColumn];
 Excel.Range myRange = this.sheet.Range[startCell, endCell];


来源:https://stackoverflow.com/questions/4319878/how-to-get-specific-range-in-excel-through-com-interop

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!