A
alex
Hello,
Got a table look like this:
Time UNITS
8:00 10
9:00 5
10:00 15
11:00 20
Would a query to will cumulate the sum of the units before the current
one so it will look like this:
Time UNITS
8:00 10
9:00 15 (it`s 10 + 5)
10:00 30 (it`s 10 + 5 + 15)
11:00 50 (it`s 10 + 5 + 15 + 20)
it must be simple but i have no clue how
Got a table look like this:
Time UNITS
8:00 10
9:00 5
10:00 15
11:00 20
Would a query to will cumulate the sum of the units before the current
one so it will look like this:
Time UNITS
8:00 10
9:00 15 (it`s 10 + 5)
10:00 30 (it`s 10 + 5 + 15)
11:00 50 (it`s 10 + 5 + 15 + 20)
it must be simple but i have no clue how