Thank you for the help in advance. I managed to create a macro that searches Column O of a sheet called "ClientTradeDetails" for the cell value "True" and, if a cell value is "True" , it takes that entire row and pastes it into a sheet called "TrueValues".
It works, BUT it is extremely slow. As you can see, I have 65536 rows worth of data in my master sheet to go through. I was thinking Copy/Paste was the issue but I don't know how to change this to avoid the Copy method. Any help?
Sub MoveTrue()
Sheets("ClientTradeDetails").Select
Dim tfCol As Range, Cell As Object
Set tfCol = Range("O2:O439050") 'Substitute with the range '
For Each Cell In tfCol
If Cell.Value = "True" Then
Cell.EntireRow.Cut
Sheets("TrueValues").Select
ActiveSheet.Range("A65536").End(xlUp).Select
Selection.Offset(1, 0).Select
ActiveSheet.Paste
End If
Next
End Sub