ActiveCell.Address
Range("myRange").Address
Sub Get_NamedRange_Address()
Dim n As Variant, rng As Range
If Selection.Cells.Count <> 1 Then Exit Sub
On Error GoTo e
For Each n In Application.Names
Set rng = Range(Mid(n, 2))
If Not rng Is Nothing Then
If Not Intersect(rng, Selection) Is Nothing Then
MsgBox "The selected cell is in " & n.Name & " (" & rng.Address(0, 0) & ")"
Exit Sub
End If
End If
e:
Next n
MsgBox "There is no named range that contains the selected cell"
End Sub