I have the following table:-
policy number transaction date value running total
123 26/01/2015 1000.00 0
123 13/02/2017 3000.00 0
234 14/02/2014 500.00 0
234 14/02/2016 4500.00 0
234 23/06/2018 1200.00 0
345 17/07/2017 7000.00 0
I want it to look like this:-
policy number transaction date value running total
123 26/01/2015 1000.00 1000.00
123 13/02/2017 3000.00 4000.00
234 14/02/2014 500.00 500.00
234 14/02/2016 4500.00 5000.00
234 23/06/2018 1200.00 6200.00
345 17/07/2017 7000.00 7000.00