***'41 wrote:
so much simpler than the other suggestions, which I couldn't get to work
Simpler is often better, but not always! Generally an "expanding range" as suggested above is a more robust situation. It, for example, avoids a problem like this:

In the top table the "simple" solution:
In B2, filled down:
=B1+A2
The bottom table uses the "expanding range" approach:
In B2, filled down:
=SUM(A$1:A2)
The $ before the 1 anchors the first cell in the range, whereas A2 is not anchored and becomes A3, A4, A5, etc. as you fill the formula down the column.
The expanding range gracefully handles the cases where (as is typical in Numbers) you have a Header Row with text in it. It also is less likely to get messed up should you ever have to add or delete rows in the middle of the table.
SG