"Bob Phillips" wrote in message
...
Dim c As Range
On Error Resume Next
Set c = Range("Range_1").Find("Something")
On Error Goto 0
If c Is Nothing Then
Msgbox "Not Found
Else
Msgbox "Found"
End If
--
HTH
RP
(remove nothere from the email address if mailing direct)
"Hal" wrote in message
...
I spent what seemed a lifetime learning excel macro language and now think
its about time I embraced this new fangled vb code.
Does someone know if VBA is also abandoned by Microsoft for a .NET version ??
Gys