I am trying to use a userforum to search specific keywords and to select all the cells containing that information and to copy and paste the entire row into another sheet. So far I only know how to select one cell/row at a time. This is what I have so far.
Private Sub CommandButton1_Click()
Cells.Find(What:=searchbox1.Text, After:=Range("A1"), LookIn:=xlFormulas, _
LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:= True, SearchFormat:=False).Activate
ActiveCell.EntireRow.Select
Selection.Copy
sheets(2).activate