Este código VBA deve funcionar:
Public Sub custom_filtering()
Dim wks As Worksheet
Set wks = ActiveSheet
firstcolumn = 1 'The first column of the original data. A=1, B=2, C=3, etc.
totalcolumns = 2 'The total of columns to be copied
factor = 1 'The factor to consider a range to be copied
destrow = 1 ' The row where the copied data starts
destcolumn = 5 'The column where the copied data starts
totalrows = wks.Cells(Rows.Count, firstcolumn).End(xlUp).Row
For i = 1 To totalrows
thecell = wks.Cells(i, firstcolumn)
If thecell < factor Then
Range(Cells(i, firstcolumn), Cells(i, totalcolumns)).Copy Destination:=Range(Cells(destrow, destcolumn), Cells(destrow, destcolumn + totalcolumns))
destrow = destrow + 1
End If
Next i
End Sub
Abra o VBA / Macros com ALT + F11 .
No lado esquerdo, clique duas vezes em A planilha, no lado direito, cole o código.
Defina as variáveis, principalmente a que chamamos factor
ao seu gosto e isso é tudo.