View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default What range is a cell in?


If Intersect(Activecell,Range("Name1") Then
'do something
ElseIf Intersect(Activecell,Range("Name2") Then
'do something else
etc.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"ppsza " wrote in message
...
Concerning Excel VBA: Does anyone know of a way that I can find out what
range a particular cell (ActiveCell) is in? Here's the situation: I
have several named ranges in a worksheet. When a cell changes, if it is
in a particular range, then some code needs to be executed, and, if
it's in another range, other code needs to be executed.

Thanks!


---
Message posted from http://www.ExcelForum.com/