I have a dataset that I want to remove offsetting entries from, which means two values that sum exactly to zero. However, there isn't an unique identifier to group the data in so I just want the criteria to be the values alone. The offsetting entries wont be beside each other like in my example and could exist anywhere in my table. So as long as it finds an offsetting entry in the table and each entry can only be offset once. Thanks in advance!
Example:
| Client | Amount |
| A | 100 |
| B | -100 |
| C | 200 |
| D | 100 |
| E | -200 |
| F | -200 |
Desired result:
| Client | Amount |
| A | 100 |
| B | -100 |
C | 200 |
E | -200 |