I'm wondering whether it is possible to create a column in a report that shows the sum of two numbers from different columns.
The specific calculation i'm trying to do is:
(TransactionEntry.Price - AccountReceivable.Balance) and have a column in the report show this value for each transaction Entry.
The report would display something like this:
TransactionEntry.Price | AccountReceivable.Balance | Price - Balance |
$20 | $5 | $15 |
Thank you.