Reputation: 1387
I need to create a report in SSRS that would display data by YEAR. Because I do not know the fixed years, I am creating this report using matrix (pivot) so years are dynamically created as a column.
What I need the report to look like: I want the report to do a cumulative add per year at row level.
Assume:
Based on Assumption:
Similar should happen to "Cash Revenue" rows.
Is this possible in SSRS? If not, how would I go about doing this in SQL Server 2008r2?
Here's what I've done so far in SSRS:
Upvotes: 0
Views: 220
Reputation: 2423
You should be able to use the RunningValue
function. Try this
=RunningValue(Fields!GAAPRevenue.Value, SUM,"datasetname")
Upvotes: 1