Hi everyone, how would I go about filtering out data that are the same in Amount1 and Amount2 column grouped by the Account number? Thanks!
Original:
| Account | Amount1 | Amount2 |
| 1 | 100 | |
| 1 | | 100 |
| 2 | 200 | |
| 2 | | 200 |
| 3 | 300 | |
| 4 | | 300 |
Desire result:
| Account | Amount1 | Amount2 |
| 1 | 100 | |
| 1 | | 100 |
| 2 | 200 | |
| 2 | | 200 |