Or something like this maybe.
Sub Maybe()
Dim lr As Long, a As Long, b As Long
lr = Cells(Rows.Count, 1).End(xlUp).Row
a = Range("A1:A" & lr).Find("CHINA").Row
b = Range(Cells(a, 1), Cells(lr, 1)).Find("CHINA").Row
Range("A" & a & ":A" & b).Select
End Sub
or this
Sub Find_China()
Dim rFound1 As Range, rFound2 As Range
On Error Resume Next
Set rFound1 = Columns(1).Find(What:="CHINA", LookIn:=xlValues, After:=Cells(1, 1))
Set rFound2 = Columns(1).Find(What:="CHINA", LookIn:=xlValues, After:=rFound1)
On Error GoTo 0
Range(rFound1, rFound2).Select
End Sub
Bookmarks