Sub es()
Dim i As Long
Application.ScreenUpdating = False
For i = 3 To Cells(Rows.Count, 1).End(xlUp).Row
If Right(Cells(i, 1), 1) Mod 2 = 1 And Left(Cells(i, 1), 1) = "A" Then Range("e65536").End(xlUp)(2) = Cells(i, 1)
If Right(Cells(i, 1), 1) Mod 2 = 0 And Left(Cells(i, 1), 1) = "A" Then Range("f65536").End(xlUp)(2) = Cells(i, 1)
If Right(Cells(i, 1), 1) Mod 2 = 1 And Left(Cells(i, 1), 1) = "B" Then Range("H65536").End(xlUp)(2) = Cells(i, 1)
If Right(Cells(i, 1), 1) Mod 2 = 0 And Left(Cells(i, 1), 1) = "B" Then Range("I65536").End(xlUp)(2) = Cells(i, 1)
If Right(Cells(i, 1), 1) Mod 2 = 1 And Left(Cells(i, 1), 1) = "C" Then Range("K65536").End(xlUp)(2) = Cells(i, 1)
If Right(Cells(i, 1), 1) Mod 2 = 0 And Left(Cells(i, 1), 1) = "C" Then Range("L65536").End(xlUp)(2) = Cells(i, 1)
Next i
End Sub