I am sorry to be so stupid, where do I put that, BElow is what I have already when I hit ALT + F11 or doe I put it somewhere in the list box
Private Sub CommandButton1_Click()
On Error Resume Next
Range("a4:q3366").Value = vbNullString
On Error GoTo 0
End Sub
Private Sub CommandButton2_Click()
Dim searchthis As String, Found As Range
Me.Unprotect Password:="123"
searchthis = InputBox("Type Number.", "Property Search")
searchthis = searchthis & "*"
Set Found = Range("A:A,c:c").Find(What:=searchthis, LookIn:=xlFormulas, LookAt:=xlWhole)
If Not Found Is Nothing Then Found.Select
Me.Protect Password:="123"
End Sub
Private Sub CommandButton3_Click()
Me.Unprotect Password:="123"
Application.Goto Range("a7"), True
Me.Protect Password:="123"
End Sub