Is it possible to get sum of all the above rows in each row?
Example:
Rows | Count
1. | 20
2. | 30
3. | 10
4. | 25
And I want to take the follow result
Rows | TotalCount
1 | 20 (20)
2 | 50 (20+30)
3 | 60 (20+30+10)
4 | 85 (20+30+10+25)