Find method

  • Thread starter Thread starter nk
  • Start date Start date
N

nk

Is this posible to get a row number(when the value 2 was find) with a
Find metod in code:
With Worksheets(1).Range("a1:a500")
Set c = .Find(2, lookin:=xlValues)
If Not c Is Nothing Then
firstAddress = c.Address
Do
c.Value = 5
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address <> firstAddress
End If
End With

Thanks'
 
Yes, it will be c.Row

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
If you only need to find the first instance then this will work.

Sub find2()
MsgBox Columns(1).Find(2, lookat:=xlWhole).Row
End Sub
 
Back
Top