Hi IforgetIt
Here is a bit of VBA That will help
Code:
Sub test2()
Dim lngLastRow As Long
Dim i As Long
'Find the last row of data Using Column A
lngLastRow = Cells(Rows.Count, 1).End(xlUp).Row
For i = 2 To lngLastRow
'pick cell (Column A) and test value of that cell
If Cells(i, 1).Value > 5 Then
'if test = true then copy the row
Cells(i, 1).EntireRow.Copy
'paste it in a seperate worksheet
Worksheets("Sheet2").Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).PasteSpecial
End If
Next i
Application.CutCopyMode = False
End Sub
you will have to modify this for each of your tests and alter the columns to test the correct ones,
IF you require any more help post back and ill help you through with this,
the other option may be to do this manuallywith an autofilter
HTH
Dave