let\'s begin with the simple form. Imagine you have a simple dataset like this one: you want to retrieve the cumulative amounts for each asset. First I would filter (ar
As suggested in the comments, you can use a simple query:
E1:
=query(A:D,"select A,B,C,sum(D) where A is not null group by A,B,C ",1)