Site icon libreofficehelp.com

Create Running Total Column in LibreOffice Calc

This short tutorial will explain how to create a running total column in LibreOffice Calc.

Running total is a concept of summing data items from the beginning to till current stage. Running total can give you a glimpse of total values as the data sets grow. It is mostly useful for many use cases, e.g. to track the total sales value to date, to track current account balance considering withdrawals and deposits and so on.

Running Total – Calc

It is straightforward to implement in LibreOffice Calc. Here’s how you can do it.

Create a Running Total Column in Calc

Running Total – Data Sets

=SUM($B$2:B3)

Running Total in Calc

 

Case Study: 1

Based on comment

What if, in the above example, for some days, total sales are $0? In those cases, if you apply the above formula in Col C, an identical running total would be calculated for empty total sales – see below.

Running Total – Empty rows

So, to overcome that, use a quick IF function as below to check whether the corresponding row has a non-zero value and then calculate the running total; otherwise, skip it. Enter below in cell C3:

=IF(B3>0,SUM($B$2:B3),””)

You can see the total is not calculated for C4 and C5 because B4 and B5 do not have any sales.

Running Total – Empty Rows-Solution

Summary

This is how you can implement quick running total in Calc. You can extend this formula in different cases to achieve a running total.

Drop a comment below if you have any questions. If you like this tutorial, take a minute to share it using the buttons below. Also, follow us/subscribe for tips and tutorials in LibreOffice.

Exit mobile version