Macro: Finding Text Within Text

  • Thread starter Thread starter Simon
  • Start date Start date
S

Simon

I need to determine whether a cell contains a particular string of text, what
is the best function or way of doing this in my macro?

For Example:
I want to know whether cell A1 contains the text "AUA", if it does then I'm
going to execute some code, if it doesn't then I'm going to execute some
other code. I was trying to use the Range.Find method but I had a lot of
trouble with it.

Thanks.
 
maybe something simple like this:

Sub test()
Dim ws As Worksheet
Set ws = Worksheets("Sheet1")

With ws
If InStr(.Range("A1"), "AUA") Then
MsgBox "found"
End If
End With

End Sub
 
Hi

You don't say if you want a case sensitive function, so I have made it case
sensitive by setting MatchCase=True.

Here's a way to do it:

Set f = Range("A1").Find(what:="AUA", MatchCase:=True)
If f Is Nothing Then
MsgBox "Not found"
Else
MsgBox "Found"
End If

Regards,
Per
 

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