Public Sub SelectRange()
Dim RngName As String
Dim R As Range
Set R = ActiveCell
Dim Msg As String
Msg = "Active Cell Is Not In A Named Range."
RngName = CellInNamedRange(R)
If RngName <> "" Then
Range(RngName).Select
Msg = "Range: " + RngName + " Selected."
End If
Application.StatusBar = Msg
End Sub
Dim RngName As String
Dim R As Range
Set R = ActiveCell
Dim Msg As String
Msg = "Active Cell Is Not In A Named Range."
RngName = CellInNamedRange(R)
If RngName <> "" Then
Range(RngName).Select
Msg = "Range: " + RngName + " Selected."
End If
Application.StatusBar = Msg
End Sub
No comments:
Post a Comment