Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a way to test whether the ActiveCell is in a given range?
For example, if a range named rngRedDog consists of the range D3:G6, how could you test to see if the ActiveCell is in that range? Thanks in advance, Paul |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
if Not Intersect(activecell,Range("rngRedDog")) is nothing then
' it is in a nmed range rngRedDog end if -- Regards, Tom Ogilvy "Paul Ponzelli" wrote in message ... Is there a way to test whether the ActiveCell is in a given range? For example, if a range named rngRedDog consists of the range D3:G6, how could you test to see if the ActiveCell is in that range? Thanks in advance, Paul |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Ah, that's it. Thanks, Tom.
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
ActiveCell in a Range? | Excel Discussion (Misc queries) | |||
Select Activecell in Range | Excel Programming | |||
How to get name of named range where activecell is | Excel Programming | |||
Name of range containing ActiveCell? | Excel Programming | |||
Saving the activecell range for later use | Excel Programming |