Running Total in Google Sheets

Creating a separate column in Google Sheets would be best for calculating the running total. In the example below, we used column C for the running total.

running-total

In this tutorial, we learn to create a formula to get the running total in a column.

Formula for a Running Total

  1. First, create a new column with the name “Running Total”.
    -create-new-running-total-column
  2. After that, enter the sum function in cell C2 and refer to the range B2:B2.
    -enter-sum-function
  3. Next, you need to change the reference from relative to absolute using the dollar sign ($).
    -change-the-reference-to-absolute
  4. In the end, drag down the formula up to the last cell.
    -drag-down-the-formula

You can see each month in the running total has the sum of the quantity for the previous months, which is why we can also call it the cumulative sum.

=SUM($B$2:B2)

Why We Need to Use Absolute Cell Reference

In this formula, we used absolute cell reference for the starting cell of the referred range using the dollar sign ($). And when you drag the formula, the first cell in the range remains fixed, and the last cell keeps changing.

why-need-absolute-cell-reference

You can see in the first formula, we have B2 as the first cell in the reference, and in the last formula, we also have the B2 as the first cell of the reference. But the last cell of the reference keeps changing with the formula in each cell.

Get the Sample Sheet