is current cell within a named range

  • Thread starter Thread starter Cinque Terra
  • Start date Start date
C

Cinque Terra

Is there a clever way to test if the current cell is within a multi-column,
multi-row range?

Thanks in advance!
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top