Let me try to convey my question with a simple example. Let's say you have a table like this.
Year | Month | EndingCheckingBalance |
2013 | Jan | $100 |
2013 | Feb | $150 |
2013 | Mar | $30 |
2013 | Apr | $45 |
2013 | May | $10 |
2013 | …. | |
2013 | Dec | $80 |
From this table I want to make a matrix report. I want to put Year in the row group (so in this example, I will just get 2013). There is nothing for the column group. For the Data section, I want to get the ending balance for the year 2013 which would be $80. Normally, you put some kind of an aggregate function in the Data section, like SUM, MIN, MAX, etc... So, I'm a bit thrown off trying to get the end of year balance.
I could try to build another table that has the end of year balances and use that table as my dataset, but I wand to see if I can do this without another table.