Thank you. Can you help me one step farther? I want to go to that cell and
select the range A1: that cell???
We can do either, but I don't know how to do both at the same time. This
will select the Found cell:
Sub find_it()
mesage = ""
Set rGoTo = Range("A1")
Set r = Range("A1:E10")
For Each rr In r
If rr.Value = "" Then
Else
mesage = rr.Address
Set rGoTo = rr
End If
Next
rGoTo.Select
End Sub
This version selects the area from A1 thru the Found cell:
Sub find_it()
mesage = ""
Set rGoTo = Range("A1")
Set r = Range("A1:E10")
For Each rr In r
If rr.Value = "" Then
Else
mesage = rr.Address
Set rGoTo = rr
End If
Next
Range("A1:" & mesage).Select
End Sub

Signature
Gary''s Student - gsnu200775
> Thank you. Can you help me one step farther? I want to go to that cell and
> select the range A1: that cell???
[quoted text clipped - 19 lines]
> > >
> > > Help.