You don't have a sheet whose codename is Information (the tab name and the codename are not the same) so you have to refer to it using Sheets("Information"):
Sub searchdata()
Dim lastrow As Long
Dim count As Integer
lastrow = Sheets("New Material").Cells(Rows.count, 1).End(xlUp).Row
count = 0
For x = 2 To lastrow
If Sheets("New Material").Cells(x, 1).Value = Sheets("Information").Range("B2").Value Then
Sheets("Information").Range("A8").Value = Sheets("New Material").Cells(x, 1).Value
Sheets("Information").Range("B8").Value = Sheets("New Material").Cells(x, 3).Value
Sheets("Information").Range("C8").Value = Sheets("New Material").Cells(x, 4).Value
count = count + 1
End If
Next x
If count = 0 Then
Sheets("Information").Range("A8:C8").ClearContents
End If
End Sub
Notes:
1. I assumed that Info was supposed to also be Sheets("Information")
2. You should always specify the .Value property rather than leaving it implicit.
3. You were missing a Next statement which I have added
4. I removed the Goto x statements as they made no sense.
Bookmarks