This is hard to explain, but here goes:
Simplified Data:
ValueA ValueB
5 30
10 40
15 50
20 60
Can I write a query that would result in the following?
Expression1
10+30 = 40
15+40 = 55
20+50 = 70
I need to add the present row + the value of the row above it...
Thanks!
Simplified Data:
ValueA ValueB
5 30
10 40
15 50
20 60
Can I write a query that would result in the following?
Expression1
10+30 = 40
15+40 = 55
20+50 = 70
I need to add the present row + the value of the row above it...
Thanks!