I want to show two columns on the report. One is "Amount", which is a field from a SQL Server table, and another one is "Balance", which is the column I derived in the report. The first value of "Balance" is the same as "Amount". Since the 2nd row, the value of "Balance" is the sum of the value from the previous row of "Balance" and that from the current row of "Amount". You can imagine how easily you can achieve it if using Excel. I tried to use function "previous", but I'm not sure how to get the previous value of "Balance", because it's not a field in SQL Server table.