Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get specific Range in Excel through COM Interop?

I have to read an excel file through a 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);

Now 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?

like image 847
mrt181 Avatar asked Nov 30 '10 23:11

mrt181


People also ask

What is Excel range in C#?

Excel. Range that contains a single cell, an entire column, an entire row, or it can be a string that names a single cell in the language of the application.


1 Answers

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];
like image 80
mrt181 Avatar answered Jan 04 '23 11:01

mrt181