Give this a try
Sub finddata()
Const shReport As String = "sheet1"
Const shData As String = "sheet2"
Dim rngData As Range, cell As Range
Dim iRow As Long, sVenderName As String
With Worksheets(shData)
Set rngData = .Range("a1", .Cells(Rows.Count, "a").End(xlUp))
End With
With Worksheets(shReport)
iRow = .Cells(Rows.Count, 1).End(xlUp).Offset(1).Row
sVenderName = .Range("d2").Value
For Each cell In rngData
If cell.Value = sVenderName Then
.Cells(iRow, 1).Resize(, 8).Value = cell.Resize(, 8).Value
iRow = iRow + 1
End If
Next
End With
End Sub
Bookmarks