Hi all,
Background
I've tried googling and seraching within the Alteryx Community but could not find anything. I hope I can make my problem clear enough that you understand and can help.
I have a dataset with transactions, important fields are [From] [To] and [Amount]. In certain cases, the combination [From] [To] is available more than once but in different order (see data example below).
Question
How can I find the corresponding transaction as I want to sum these to see if the total amount corresponds.
Example data:
Input:
| From | To | Amount |
| A | B | 100 |
| A | B | 300 |
| A | C | 200 |
| B | A | -100 |
| B | A | -200 |
| B | C | 200 |
| C | A | -200 |
| C | B | -150 |
Expected output:
| From | To | Sum_Amount |
| A | B | 100 |
| B | C | 50 |
Thank you in advance,
Bruce