Column with accumulated sum?

Especially:

Also:

There are many ways to skin this cat, but the one I offered is:

  1. Create a column called OrderId with formula:
thisTable.Find(thisRow)
  1. Then your Accum. Revenue formula can be:
thisTable.Filter(OrderId <= thisRow.OrderId).Revenue.Sum()
6 Likes