I am trying to do a filter based on one column. For example, I want to remove the transaction whenever I see it has account_no 1111
Input
Date Trans account_no
2017-12-11 10000 1111
2017-12-11 10000 1112
2017-12-11 10000 1113
2017-12-11 10001 1111
2017-12-11 10002 1113
Desired Output
Date Trans account_no
2017-12-11 10002 1113
Edit:
This is different than operator chaining because you are dealing with a duplication/conditional filter