Sub Demo()
Dim SearchVal As String, LstRw As Long, i As Long
SearchVal = InputBox("Enter the value to search for.", "SEARCH FOR:")
If Len(SearchVal) = 0 Then Exit Sub
LstRw = Cells(Rows.Count, "A").End(xlUp).Row
For i = 1 To LstRw
If Cells(i, "A").Value = SearchVal Then _
Rows(i).EntireRow.Copy Sheets("Sheet2").Cells(Rows.Count, "A").End(xlUp)(2)
Next
End Sub
Sub Colours()
Const SR As Long = 2
Const sCol As String = "A"
Dim i As Long
Dim LR As Long: LR = Range(sCol & Rows.Count).End(xlUp).Row
For i = SR To LR
Select Case Range(sCol & i).Value
Case "Closed": Rows(i).Interior.ColorIndex = 5
End Select
Next i
End Sub
Here's something you might try:I'm looking to have the macro look down a specified column for 4 different values (something like A, B, C, D) and if those values are there for it to highlight and copy the rows
Sub FindAndCopyDemo()
Dim LstRw As Long, i As Long
LstRw = Cells(Rows.Count, "A").End(xlUp).Row
For i = 1 To LstRw
Select Case Cells(i, "A").Value
Case "A", "B", "C", "D"
Rows(i).EntireRow.Copy Sheets("Sheet2").Cells(Rows.Count, "A").End(xlUp)(2)
End Select
Next i
End Sub