I have a report like this:
User | Amount
-------------
user1 | $100.00
| $120.00
| $200.00
---------------
user1 $420.00
I would like to add the users budget and remaining budget to the totals like this:
User | Amount |
---------------
user1 | $100.00
| $120.00
| $200.00
---------------
user1 $420.00 Budget $1000.00 Remaining $580.00
I can get it to sort of work by adding the budget and the remaining amounts as columns but then I have a bunch of row data that is duplicated (for budget) or meaningless (for remaining).
Is there an option for this kind of thing? I thought dbr.hidecolumn.data might do it, but that seems to be for a horizontal layout.
Thanks
Jay