what columns are you searching on sheet2, all of them? this is similar to what i
posted to another question. just change the ranges and sheet names.
Sub test()
Dim ws As Worksheet, ws2 As Worksheet
Dim rngfound As Range
Dim rng As Range
Dim toFind As String
Set ws = Worksheets("Sheet1")
Set ws2 = Worksheets("Sheet2")
Set rng = ws2.Range("A1:A30")
toFind = ws.Range("A1").Value
With rng
Set rngfound = .Find(toFind, lookat:=xlWhole, LookIn:=xlValues)
End With
If Not rngfound Is Nothing Then
Application.Goto ws2.Range("A" & rngfound.Row), scroll:=True
End If
End Sub

Signature
Gary
> Hi
>
[quoted text clipped - 10 lines]
>
> Dave
DaveM - 28 May 2008 20:55 GMT
Hi Gary thanks for the reply
I need to find in sheet2 Column A
Thanks
Dave
> what columns are you searching on sheet2, all of them? this is similar to
> what i posted to another question. just change the ranges and sheet names.
[quoted text clipped - 31 lines]
>>
>> Dave
Gary Keramidas - 28 May 2008 21:06 GMT
adapt this to your needs
Sub test()
Dim ws As Worksheet, ws2 As Worksheet
Dim rngfound As Range
Dim rng As Range
Dim toFind As String
Set ws = Worksheets("Sheet1")
Set ws2 = Worksheets("Sheet2")
Set rng = ws2.Columns("A:A")
toFind = ws.Range("A1").Value
With rng
Set rngfound = .Find(toFind, lookat:=xlWhole, LookIn:=xlValues)
End With
If Not rngfound Is Nothing Then
Application.Goto ws2.Range("A" & rngfound.Row), scroll:=True
End If
End Sub

Signature
Gary
> Hi Gary thanks for the reply
>
[quoted text clipped - 39 lines]
>>>
>>> Dave
DaveM - 28 May 2008 21:24 GMT
Works great
Thanks Gary
All the Best
Dave
> adapt this to your needs
>
[quoted text clipped - 61 lines]
>>>>
>>>> Dave