View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
papou[_2_] papou[_2_] is offline
external usenet poster
 
Posts: 112
Default Search for text string

Hello Arne
Dim Rg As Range
With Range("A1:E1")
Set Rg = .Find("AUSTRIA", LookIn:=xlValues, lookat:=xlPart)
If Not Rg Is Nothing Then
MsgBox "Value found in " & Rg.Address
End If
End With

See VBA help for further info on Find method.

HTH
Cordially
Pascal

"Arne Hegefors" a écrit dans le
message de news: ...
Hi! I have a macro that searches through a list of data using objects. I
want
to see if a cell contains a certain value and if so then do something. The
cell can contain eg: AUSTRIA GVB 2012 JUL 5.0%. However, I am just
interested
in AUSTRIA. The rest does not matter. I have a list of the words I am
looking
for. Basically all I want to know is how can I search a cell for a certain
value? Thanks alot!!