Spreadsheet help please

Page may contain affiliate links. Please see terms for details.

PeteXXX

Cake or ice cream? The choice is endless ...
Location
Hamtun
I'm sure it won't take long for some helpful person here to do this really easy task that is beyond me.
All I want it to do, when I put a £sterling number in column B, is to do a running total in column D

And it needs to work in, and be savable to, .ODT format for LibreOffice, but I can't upload a file in .ODT format here.

:smile:
 

Attachments

  • running-total.xlsx
    5 KB · Views: 31

Spinney

Bimbleur extraordinaire
Location
Back up north
In D2, put =B2
In D3 put =D2+B3
Then just fill down column D starting at D3...
(assuming LibraOffice works like Excel - filling down will give you
=D3+B4
=D4+B5 etc)
 

winjim

Straddle the line, discord and rhyme
D2=SUM($B$2:$B2)

Copy down.

The advantage is that it uses the primary data and doesn't rely on using the previous running total, which is already the result of a function. Allows you to fill col B in any order and not worry about blank cells. :-)
 
Last edited:
OP
OP
PeteXXX

PeteXXX

Cake or ice cream? The choice is endless ...
Location
Hamtun
In D2, put =B2
In D3 put =D2+B3
Then just fill down column D starting at D3...
(assuming LibraOffice works like Excel - filling down will give you
=D3+B4
=D4+B5 etc)
That looks complicated! (but I'll give it a go) thanks...
 
OP
OP
PeteXXX

PeteXXX

Cake or ice cream? The choice is endless ...
Location
Hamtun
Any good?
I tried that, but when it opens and runs in LibreOffice, the next number I put in column B isn't in '£' format and doesn't then add to or display the total in column D, but thanks.
 

winjim

Straddle the line, discord and rhyme
I tried that, but when it opens and runs in LibreOffice, the next number I put in column B isn't in '£' format and doesn't then add to or display the total in column D, but thanks.
You'll need to copy the function down the column. I haven't touched the number formatting, it should be as you left it.
 
OP
OP
PeteXXX

PeteXXX

Cake or ice cream? The choice is endless ...
Location
Hamtun

winjim

Straddle the line, discord and rhyme
Better still:

D2=if(isblank(B2),"",SUM($B$2:$B2))

Only fills in column D if there's a value in column B. I've copied it down to row 20.
 

Attachments

  • running-total2.xlsx
    6.4 KB · Views: 20
Top Bottom