Good morning kenreavy
This little routine will return a msgbox if the named range exists and will do nothing if it doesn't. Any good?
Sub Test()
On Error GoTo Last
If Len(ThisWorkbook.Names("MyRange").Name) <> 0 Then MsgBox "Range Exists"
Last:
End Sub
HTH
DominicB