If these were in columns A, B, and C:
A1=Fail, B1=Pass, C1=DescriptionOfA
A2=Fail, B2=Fail, C2=DescriptionOfB
...
Then you could create a new column D:
D1=IF(A1=B1,IF(A1="Pass",TRUE))
This new column would be filled with TRUEs and FALSEs. Only the TRUEs will have passed both tests.
You can create an AutoFilter to hide all of the FALSEs.
(Data > Filter > AutoFilter)
- Brian Withun