Hi,
Imagine I have a Excel.Range (A1:C5) named "Test1" and now, my activecell is located at B2, I'd like to know how I can select and retrieve the whole range "Test1" by a cell
This is not work: Range["B2", missing].CurrentRegion... What's the correct property
Thanks.

Select a Range by a Cell
balaiitm
Here's one example that might help you:
C#
RichardDKelly
I think I have to clarify more initially. What I wnat to do is to select a range (such as 3 x 7) but my ActiveCell is just 1 cell (within that range), what's the correct property to select the "parent" range
Thanks,
Grzegorz Gogolowicz MSFT
foobish
Hi Peter,
To slect a range, try something like this:
C#Range["A1", "C5"].Select();
// Or, just use the name of the Range and call the select method:
Test1.Select();
Rufus