Hi,
Having some trouble figuring out a solution with Multi-Row functions to remove offsetting debit and credit transactions at an account level.
For instance, let's say account 12345 has 3 transactions, $250.50, -$250.50, $350.00
Can someone help me populate a formula that will only leave me the $350.00? I've tried sourcing the Community for similar examples but the formula I'm using bring me back $600.50($250.50+$350.00)
below is the formula I am using where txn_am is the transaction amount, and Net Amount is the new column
IF ISnull([Row-1:txn_am]) THEN [txn_am]
ELSE [Row-1:Net Amount] + [txn_am] ENDIF
to be more clear, what I need is to bring back 1) if the values are directly offsetting ($250, -$250), give me 0
2) give me all remaining positive values
Thanks in advance!