Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a clever way to test if the current cell is within a multi-column,
multi-row range? Thanks in advance! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
you can give this a try:
Sub test() If Not Intersect(ActiveCell, Range("test")) Is Nothing Then MsgBox ActiveCell.Address & " is within " & Range("test").Name Else 'do nothing End If End Sub -- Gary "Cinque Terra" wrote in message ... Is there a clever way to test if the current cell is within a multi-column, multi-row range? Thanks in advance! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Referencing a named range based upon Range name entry in cell | Excel Worksheet Functions | |||
inserting a named range into new cells based on a named cell | Excel Discussion (Misc queries) | |||
How do i check if the current cell is part of a range ? | Excel Programming | |||
If any cell in named range = 8 then shade named range | Excel Programming | |||
Getting named range from a cell | Excel Programming |